Search
lxdream.org :: lxdream/Makefile.am :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename Makefile.am
changeset 1:eea311cfd33e
next94:8d80d9c7cc7d
author nkeynes
date Mon Jan 16 11:23:05 2006 +0000 (18 years ago)
permissions -rw-r--r--
last change Set base buffer size to 1/10 second
file annotate diff log raw
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/Makefile.am Mon Jan 16 11:23:05 2006 +0000
1.3 @@ -0,0 +1,30 @@
1.4 +## Process this file with automake to produce Makefile.in
1.5 +
1.6 +SUBDIRS = src po
1.7 +
1.8 +EXTRA_DIST = \
1.9 + autogen.sh \
1.10 + dream.glade \
1.11 + dream.gladep
1.12 +
1.13 +install-data-local:
1.14 + @$(NORMAL_INSTALL)
1.15 + if test -d $(srcdir)/pixmaps; then \
1.16 + $(mkinstalldirs) $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \
1.17 + for pixmap in $(srcdir)/pixmaps/*; do \
1.18 + if test -f $$pixmap; then \
1.19 + $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \
1.20 + fi \
1.21 + done \
1.22 + fi
1.23 +
1.24 +dist-hook:
1.25 + if test -d pixmaps; then \
1.26 + mkdir $(distdir)/pixmaps; \
1.27 + for pixmap in pixmaps/*; do \
1.28 + if test -f $$pixmap; then \
1.29 + cp -p $$pixmap $(distdir)/pixmaps; \
1.30 + fi \
1.31 + done \
1.32 + fi
1.33 +
.