root/morphix/trunk/keybconf/Makefile.am

Revision 2, 0.9 kB (checked in by nextime, 2 years ago)

Initial import, branching from morphix svn

Line 
1 ## Process this file with automake to produce Makefile.in
2
3 SUBDIRS = src po
4
5 EXTRA_DIST = \
6         autogen.sh \
7         keybconfig.glade \
8         keybconfig.gladep
9
10 install-data-local:
11         @$(NORMAL_INSTALL)
12         if test -d $(srcdir)/pixmaps; then \
13           $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \
14           for pixmap in $(srcdir)/pixmaps/*; do \
15             if test -f $$pixmap; then \
16               $(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \
17             fi \
18           done \
19         fi
20         if test -d $(srcdir)/lists; then \
21           $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/lists; \
22           for list in $(srcdir)/lists/*; do \
23             if test -f $$list; then \
24               $(INSTALL_DATA) $$list $(DESTDIR)$(pkgdatadir)/lists; \
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
Note: See TracBrowser for help on using the browser.