1 ## Process this file with automake to produce Makefile.in
3 SUBDIRS = src po pixmaps
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); \
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); \
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; \
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); \