Search
lxdream.org :: lxdream/Makefile.am
lxdream 0.9.1
released Jun 29
Download Now
filename Makefile.am
changeset 521:33d2d92784c7
prev517:8191f0d305cb
next681:1755a126b109
author nkeynes
date Tue Nov 20 09:42:03 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Downgrade "ARM halted" error to a warning (durn demos...)
view annotate diff log raw
     1 ## Process this file with automake to produce Makefile.in
     3 if BUILD_SYSTEST
     4   TEST_SUBDIR = test
     5 endif
     6 SUBDIRS = src po $(TEST_SUBDIR)
     8 EXTRA_DIST = autogen.sh
    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/*; do \
    15 	    if test -f $$pixmap; then \
    16 	      $(INSTALL_DATA) $$pixmap $(DESTDIR)$(datadir)/pixmaps/$(PACKAGE); \
    17 	    fi \
    18 	  done \
    19 	fi
    20 	$(mkinstalldirs) $(DESTDIR)$(sysconfdir)
    21 	$(INSTALL_DATA) lxdreamrc $(DESTDIR)$(sysconfdir)
    23 dist-hook:
    24 	if test -d pixmaps; then \
    25 	  mkdir $(distdir)/pixmaps; \
    26 	  for pixmap in pixmaps/*; do \
    27 	    if test -f $$pixmap; then \
    28 	      cp -p $$pixmap $(distdir)/pixmaps; \
    29 	    fi \
    30 	  done \
    31 	fi
.