Import upstream Source
[gamazons.git] / Makefile.am
blob6281bdf13b0378b829b75623ee5598707a7804ba
1 ## Process this file with automake to produce Makefile.in
3 SUBDIRS = src po pixmaps
5 EXTRA_DIST = \
6         autogen.sh \
7         gamazons.glade \
8         gamazons.gladep
10 install-data-local:
11         @$(NORMAL_INSTALL)
12         if test -d $(srcdir)/pixmaps; then \
13           $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \
14           for pixmap in $(srcdir)/pixmaps/*.png; do \
15             if test -f $$pixmap; then \
16               $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \
17             fi \
18           done \
19         fi
21         if test -d $(srcdir)/pixmaps; then \
22           $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \
23           for pixmap in $(srcdir)/pixmaps/*.theme; do \
24             if test -f $$pixmap; then \
25               $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/$(PACKAGE); \
26             fi \
27           done \
28         fi
30 dist-hook:
31         if test -d pixmaps; then \
32           mkdir $(distdir)/pixmaps; \
33           for pixmap in pixmaps/*.png; do \
34             if test -f $$pixmap; then \
35               cp -p $$pixmap $(distdir)/pixmaps; \
36             fi \
37           done \
38         fi
40         if test -d pixmaps; then \
41           mkdir $(distdir)/pixmaps; \
42           for pixmap in pixmaps/*.theme; do \
43             if test -f $$pixmap; then \
44               cp -p $$pixmap $(distdir)/$(PACKAGE); \
45             fi \
46           done \
47         fi