~ubuntu-branches/ubuntu/quantal/packeth/quantal

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): David Paleino
  • Date: 2009-10-31 21:27:00 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20091031212700-x2vkemah0nhdn57t
Tags: 1.6.3-1
* New upstream version
* debian/rules rewritten to adapt to new source layout
  - debian/manpages added
  - debian/examples added
  - debian/dirs added
* debian/control:
  - bumped quilt Build-Depends to >= 0.46-7~ (to use --with quilt in
    dh7)
  - Standards-Version bumped to 3.8.3 (no changes needed)
* debian/patches/* refreshed to cleanly apply

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
INCLUDES = \
 
4
        -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
 
5
        -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
 
6
        @PACKAGE_CFLAGS@
 
7
 
 
8
bin_PROGRAMS = packeth-1.6.2-dev
 
9
 
 
10
packeth_1.6.2_dev_SOURCES = \
 
11
        main.c \
 
12
        support.c support.h \
 
13
        interface.c interface.h \
 
14
        callbacks.c callbacks.h
 
15
 
 
16
packeth_1.6.2_dev_LDADD = @PACKAGE_LIBS@ $(INTLLIBS)
 
17
 
 
18
install-data-local:
 
19
        @$(NORMAL_INSTALL)
 
20
        if test -d $(srcdir)/pixmaps; then \
 
21
          $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \
 
22
          for pixmap in $(srcdir)/pixmaps/*; do \
 
23
            if test -f $$pixmap; then \
 
24
              $(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \
 
25
            fi \
 
26
          done \
 
27
        fi
 
28
 
 
29
dist-hook:
 
30
        if test -d pixmaps; then \
 
31
          mkdir $(distdir)/pixmaps; \
 
32
          for pixmap in pixmaps/*; do \
 
33
            if test -f $$pixmap; then \
 
34
              cp -p $$pixmap $(distdir)/pixmaps; \
 
35
            fi \
 
36
          done \
 
37
        fi
 
38