~ubuntu-branches/ubuntu/trusty/ultrastar-ng/trusty

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Miriam Ruiz
  • Date: 2007-05-19 13:27:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070519132705-0e57ieq232ykprpv
Tags: 0.1.4-1
* Build-Depends on libcairo2-dev (>= 1.2)
* Modified rules so that the icon and desktop files appear in both flavours
  of the program.
* Added rule-flavour type of targets in debian/rules, so that it is
  easier to maintain.
* New Upstream Release.
  + Added difficulty level
  + Added to-start cursor
  + Added audio pause/seek
  + Added practice screen
  + Added ingame fullscreen support
  + Rewrote of the lyrics parsing and screen API
  + Added manpage, desktop and pixmap files
  + Fixed latest unscaled graphics
  + Bufixes and memleak fixes
* Reconfigure autotools files before running configure.
  Added build dependencies: autoconf, automake1.10
* Added patch to avoid rebuilding the man page, not working properly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
# PARTICULAR PURPOSE.
14
14
 
15
15
@SET_MAKE@
16
 
 
17
16
VPATH = @srcdir@
18
17
pkgdatadir = $(datadir)/@PACKAGE@
19
18
pkglibdir = $(libdir)/@PACKAGE@
53
52
        install-pdf-recursive install-ps-recursive install-recursive \
54
53
        installcheck-recursive installdirs-recursive pdf-recursive \
55
54
        ps-recursive uninstall-recursive
56
 
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
57
 
am__vpath_adj = case $$p in \
58
 
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
59
 
    *) f=$$p;; \
60
 
  esac;
61
 
am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
62
 
am__installdirs = "$(DESTDIR)$(themesdefdir)" \
63
 
        "$(DESTDIR)$(themeslimadir)"
64
 
themesdefDATA_INSTALL = $(INSTALL_DATA)
65
 
themeslimaDATA_INSTALL = $(INSTALL_DATA)
66
 
DATA = $(themesdef_DATA) $(themeslima_DATA)
67
55
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
68
56
  distclean-recursive maintainer-clean-recursive
69
57
ETAGS = etags
114
102
FFT_LIBS = @FFT_LIBS@
115
103
GL_LIBS = @GL_LIBS@
116
104
GREP = @GREP@
 
105
HELP2MAN = @HELP2MAN@
117
106
INSTALL = @INSTALL@
118
107
INSTALL_DATA = @INSTALL_DATA@
119
108
INSTALL_PROGRAM = @INSTALL_PROGRAM@
207
196
top_srcdir = @top_srcdir@
208
197
xine_CFLAGS = @xine_CFLAGS@
209
198
xine_LIBS = @xine_LIBS@
210
 
SUBDIRS = src
211
 
themesdefdir = @THEMES_DIR@/default
212
 
themesdef_DATA = themes/default/no_cover.png \
213
 
        themes/default/intro.svg \
214
 
        themes/default/songs_bg.svg \
215
 
        themes/default/songs_order.svg \
216
 
        themes/default/songs_song.svg \
217
 
        themes/default/sing_bg.svg \
218
 
        themes/default/sing_lyricscurrent.svg \
219
 
        themes/default/sing_lyricshighlight.svg \
220
 
        themes/default/sing_lyricsnext.svg \
221
 
        themes/default/sing_p1box.svg \
222
 
        themes/default/sing_p1score.svg \
223
 
        themes/default/sing_p2box.svg \
224
 
        themes/default/sing_p2score.svg \
225
 
        themes/default/sing_progressfg.svg \
226
 
        themes/default/sing_timetxt.svg
227
 
 
228
 
themeslimadir = @THEMES_DIR@/lima
229
 
themeslima_DATA = themes/lima/no_cover.png \
230
 
        themes/lima/intro.svg \
231
 
        themes/lima/songs_bg.svg \
232
 
        themes/lima/songs_order.svg \
233
 
        themes/lima/songs_song.svg \
234
 
        themes/lima/sing_bg.svg \
235
 
        themes/lima/sing_lyricscurrent.svg \
236
 
        themes/lima/sing_lyricshighlight.svg \
237
 
        themes/lima/sing_lyricsnext.svg \
238
 
        themes/lima/sing_p1box.svg \
239
 
        themes/lima/sing_p1score.svg \
240
 
        themes/lima/sing_p2box.svg \
241
 
        themes/lima/sing_p2score.svg \
242
 
        themes/lima/sing_progressfg.svg \
243
 
        themes/lima/sing_timetxt.svg
244
 
 
 
199
SUBDIRS = src docs data themes
245
200
includes = include/audio.h \
246
201
        include/video.h \
247
202
        include/cairotosdl.h \
254
209
        include/record.h \
255
210
        include/screen_intro.h \
256
211
        include/screen_songs.h \
 
212
        include/screen_practice.h \
257
213
        include/songs.h \
 
214
        include/lyrics.h \
258
215
        include/sdl_gl.h \
259
216
        include/video_driver.h
260
217
 
313
270
 
314
271
distclean-hdr:
315
272
        -rm -f config.h stamp-h1
316
 
install-themesdefDATA: $(themesdef_DATA)
317
 
        @$(NORMAL_INSTALL)
318
 
        test -z "$(themesdefdir)" || $(MKDIR_P) "$(DESTDIR)$(themesdefdir)"
319
 
        @list='$(themesdef_DATA)'; for p in $$list; do \
320
 
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
321
 
          f=$(am__strip_dir) \
322
 
          echo " $(themesdefDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(themesdefdir)/$$f'"; \
323
 
          $(themesdefDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(themesdefdir)/$$f"; \
324
 
        done
325
 
 
326
 
uninstall-themesdefDATA:
327
 
        @$(NORMAL_UNINSTALL)
328
 
        @list='$(themesdef_DATA)'; for p in $$list; do \
329
 
          f=$(am__strip_dir) \
330
 
          echo " rm -f '$(DESTDIR)$(themesdefdir)/$$f'"; \
331
 
          rm -f "$(DESTDIR)$(themesdefdir)/$$f"; \
332
 
        done
333
 
install-themeslimaDATA: $(themeslima_DATA)
334
 
        @$(NORMAL_INSTALL)
335
 
        test -z "$(themeslimadir)" || $(MKDIR_P) "$(DESTDIR)$(themeslimadir)"
336
 
        @list='$(themeslima_DATA)'; for p in $$list; do \
337
 
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
338
 
          f=$(am__strip_dir) \
339
 
          echo " $(themeslimaDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(themeslimadir)/$$f'"; \
340
 
          $(themeslimaDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(themeslimadir)/$$f"; \
341
 
        done
342
 
 
343
 
uninstall-themeslimaDATA:
344
 
        @$(NORMAL_UNINSTALL)
345
 
        @list='$(themeslima_DATA)'; for p in $$list; do \
346
 
          f=$(am__strip_dir) \
347
 
          echo " rm -f '$(DESTDIR)$(themeslimadir)/$$f'"; \
348
 
          rm -f "$(DESTDIR)$(themeslimadir)/$$f"; \
349
 
        done
350
273
 
351
274
# This directory's subdirectories are mostly independent; you can cd
352
275
# into them and run `make' without going through this Makefile.
623
546
               exit 1; } >&2
624
547
check-am: all-am
625
548
check: check-recursive
626
 
all-am: Makefile $(DATA) config.h
 
549
all-am: Makefile config.h
627
550
installdirs: installdirs-recursive
628
551
installdirs-am:
629
 
        for dir in "$(DESTDIR)$(themesdefdir)" "$(DESTDIR)$(themeslimadir)"; do \
630
 
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
631
 
        done
632
552
install: install-recursive
633
553
install-exec: install-exec-recursive
634
554
install-data: install-data-recursive
672
592
 
673
593
info-am:
674
594
 
675
 
install-data-am: install-themesdefDATA install-themeslimaDATA
 
595
install-data-am:
676
596
 
677
597
install-dvi: install-dvi-recursive
678
598
 
708
628
 
709
629
ps-am:
710
630
 
711
 
uninstall-am: uninstall-themesdefDATA uninstall-themeslimaDATA
 
631
uninstall-am:
712
632
 
713
633
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
714
634
        install-strip
723
643
        install-dvi install-dvi-am install-exec install-exec-am \
724
644
        install-html install-html-am install-info install-info-am \
725
645
        install-man install-pdf install-pdf-am install-ps \
726
 
        install-ps-am install-strip install-themesdefDATA \
727
 
        install-themeslimaDATA installcheck installcheck-am \
 
646
        install-ps-am install-strip installcheck installcheck-am \
728
647
        installdirs installdirs-am maintainer-clean \
729
648
        maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
730
 
        pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
731
 
        uninstall-themesdefDATA uninstall-themeslimaDATA
 
649
        pdf-am ps ps-am tags tags-recursive uninstall uninstall-am
732
650
 
733
651
# Tell versions [3.59,3.63) of GNU make to not export all variables.
734
652
# Otherwise a system limit (for SysV at least) may be exceeded.