root/morphix/trunk/mcp/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         mcp.glade \
8         mcp.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)/data; then \
21           $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/data; \
22           cp -a $(srcdir)/data/* $(DESTDIR)$(pkgdatadir)/data; \
23         fi
24
25 dist-hook:
26         if test -d pixmaps; then \
27           mkdir $(distdir)/pixmaps; \
28           for pixmap in pixmaps/*; do \
29             if test -f $$pixmap; then \
30               cp -p $$pixmap $(distdir)/pixmaps; \
31             fi \
32           done \
33         fi
34         if test -d data; then \
35           mkdir $(distdir)/data; \
36           cp -a $(srcdir)/data/* $(DESTDIR)$(pkgdatadir)/data; \
37         fi
Note: See TracBrowser for help on using the browser.