Search
lxdream.org :: lxdream/Makefile.am
lxdream 0.9.1
released Jun 29
Download Now
filename Makefile.am
changeset 692:44b8ded54a9c
prev681:1755a126b109
next700:4650d0c7f6f9
author nkeynes
date Sun Jun 22 06:21:57 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Update system tests for new command-line args
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
    33 if GUI_COCOA
    34 # Build a Mac OS X bundle. This is meaningless anywhere else
    35 all-local:
    36 	@echo --- Building Mac Bundle ---
    37 	mkdir -p lxdream.app/Contents/MacOS
    38 	mkdir -p lxdream.app/Contents/Resources
    39 	cp src/lxdream lxdream.app/Contents/MacOS
    40 	cp -R pixmaps/* lxdream.app/Contents/Resources
    41 	@echo --- Done ---
    42 endif
    44 bundle: all
.