~ubuntu-branches/debian/jessie/gpaint/jessie

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Goedson Teixeira Paixao
  • Date: 2002-03-17 12:27:19 UTC
  • Revision ID: james.westby@ubuntu.com-20020317122719-a6mowwhvvtbmcxow
Tags: upstream-0.2.2
ImportĀ upstreamĀ versionĀ 0.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
SUBDIRS = intl po macros src
 
4
 
 
5
EXTRA_DIST =            \
 
6
        gpaint.desktop \
 
7
        gpaint.spec        
 
8
 
 
9
install-data-local:
 
10
        @$(NORMAL_INSTALL)
 
11
        if test -d $(srcdir)/pixmaps; then \
 
12
          $(mkinstalldirs) $(DESTDIR)@PACKAGE_PIXMAPS_DIR@; \
 
13
          for pixmap in $(srcdir)/pixmaps/*; do \
 
14
            if test -f $$pixmap; then \
 
15
              $(INSTALL_DATA) $$pixmap $(DESTDIR)@PACKAGE_PIXMAPS_DIR@; \
 
16
            fi \
 
17
          done \
 
18
        fi
 
19
 
 
20
dist-hook:
 
21
        if test -d pixmaps; then \
 
22
          mkdir $(distdir)/pixmaps; \
 
23
          for pixmap in pixmaps/*; do \
 
24
            if test -f $$pixmap; then \
 
25
              cp -p $$pixmap $(distdir)/pixmaps; \
 
26
            fi \
 
27
          done \
 
28
        fi
 
29