Search
lxdream.org :: lxdream/Makefile.am
lxdream 0.9.1
released Jun 29
Download Now
filename Makefile.am
changeset 94:8d80d9c7cc7d
prev1:eea311cfd33e
next180:e6dcf9b65658
author nkeynes
date Thu Jun 15 10:32:42 2006 +0000 (17 years ago)
permissions -rw-r--r--
last change Fix IDE DMA to actually work for real.
Implement the mystery packet 0x71 by cribbing a block of data from the dc.
view annotate diff log raw
     1 ## Process this file with automake to produce Makefile.in
     3 SUBDIRS = src po test
     5 EXTRA_DIST = \
     6 	autogen.sh \
     7 	dream.glade \
     8 	dream.gladep
    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
    21 dist-hook:
    22 	if test -d pixmaps; then \
    23 	  mkdir $(distdir)/pixmaps; \
    24 	  for pixmap in pixmaps/*; do \
    25 	    if test -f $$pixmap; then \
    26 	      cp -p $$pixmap $(distdir)/pixmaps; \
    27 	    fi \
    28 	  done \
    29 	fi
.