~ubuntu-branches/ubuntu/quantal/gnurobbo/quantal

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Ansgar Burchardt, Ansgar Burchardt, Gonéri Le Bouder
  • Date: 2009-03-14 23:10:50 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090314231050-70zcgdcmp7177pql
Tags: 0.61-1
[ Ansgar Burchardt ]
* New Upstream Version (LP: #337089)
* Do not dump vm usage information
  + New patch: do-not-dump-vmusage.diff
* Update packaging for debhelper 7
* Update copyright information
* Update Vcs-* fields for the Git repository
* Bump Standards Version to 3.8.0
  + add debian/README.source
* Add watch file

[ Gonéri Le Bouder ]
* Do not install the LICENSE-font files 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
bin_PROGRAMS = gnurobbo
2
 
 
3
 
gnurobbo_SOURCES = game.c game.h board.c data_init.c
4
 
EXTRA_DIST = levels.dat icons/icons.bmp robbo.ttf icons/ciphers.bmp icons/background.bmp
5
 
 
6
 
install-data-local:
7
 
        @$(NORMAL_INSTALL)
8
 
        if test -d $(srcdir)/pixmaps; then \
9
 
          $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \
10
 
            for pixmap in $(srcdir)/pixmaps/*; do \
11
 
              if test -f $$pixmap; then \
12
 
               $(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \
13
 
              fi \
14
 
            done \
15
 
        fi
16
 
        $(INSTALL_DATA) robbo.ttf $(DESTDIR)$(pkgdatadir)
17
 
        $(INSTALL_DATA) levels.dat $(DESTDIR)$(pkgdatadir)
18
 
 
19
 
dist-hook:
20
 
        if test -d pixmaps; then \
21
 
          mkdir $(distdir)/pixmaps; \
22
 
          for pixmap in pixmaps/*; do \
23
 
            if test -f $$pixmap; then \
24
 
             cp -p $$pixmap $(distdir)/pixmaps; \
25
 
            fi \
26
 
          done \
27
 
        fi
28
 
        cp -p robbo.ttf $(destdir)
29
 
        cp -p levels.dat $(destdir)