Search
lxdream.org :: lxdream/Makefile.in :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename Makefile.in
changeset 700:4650d0c7f6f9
prev694:771cef7af62a
next709:18c39a8e504c
author nkeynes
date Sun Jun 22 08:59:39 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Add a tidy summary at the end of the configure script
file annotate diff log raw
1.1 --- a/Makefile.in Sun Jun 22 03:52:56 2008 +0000
1.2 +++ b/Makefile.in Sun Jun 22 08:59:39 2008 +0000
1.3 @@ -58,6 +58,10 @@
1.4 install-recursive installcheck-recursive installdirs-recursive \
1.5 pdf-recursive ps-recursive uninstall-info-recursive \
1.6 uninstall-recursive
1.7 +man1dir = $(mandir)/man1
1.8 +am__installdirs = "$(DESTDIR)$(man1dir)"
1.9 +NROFF = nroff
1.10 +MANS = $(man_MANS)
1.11 ETAGS = etags
1.12 CTAGS = ctags
1.13 DIST_SUBDIRS = src po test
1.14 @@ -165,6 +169,8 @@
1.15 PACKAGE_VERSION = @PACKAGE_VERSION@
1.16 PATH_SEPARATOR = @PATH_SEPARATOR@
1.17 PKG_CONFIG = @PKG_CONFIG@
1.18 +POD2HTML = @POD2HTML@
1.19 +POD2MAN = @POD2MAN@
1.20 POFILES = @POFILES@
1.21 POSUB = @POSUB@
1.22 PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
1.23 @@ -232,6 +238,7 @@
1.24 @BUILD_SYSTEST_TRUE@TEST_SUBDIR = test
1.25 SUBDIRS = src po $(TEST_SUBDIR)
1.26 EXTRA_DIST = autogen.sh
1.27 +man_MANS = lxdream.1
1.28 all: config.h
1.29 $(MAKE) $(AM_MAKEFLAGS) all-recursive
1.30
1.31 @@ -289,6 +296,51 @@
1.32 test/Makefile: $(top_builddir)/config.status $(top_srcdir)/test/Makefile.in
1.33 cd $(top_builddir) && $(SHELL) ./config.status $@
1.34 uninstall-info-am:
1.35 +install-man1: $(man1_MANS) $(man_MANS)
1.36 + @$(NORMAL_INSTALL)
1.37 + test -z "$(man1dir)" || $(mkdir_p) "$(DESTDIR)$(man1dir)"
1.38 + @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \
1.39 + l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
1.40 + for i in $$l2; do \
1.41 + case "$$i" in \
1.42 + *.1*) list="$$list $$i" ;; \
1.43 + esac; \
1.44 + done; \
1.45 + for i in $$list; do \
1.46 + if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
1.47 + else file=$$i; fi; \
1.48 + ext=`echo $$i | sed -e 's/^.*\\.//'`; \
1.49 + case "$$ext" in \
1.50 + 1*) ;; \
1.51 + *) ext='1' ;; \
1.52 + esac; \
1.53 + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
1.54 + inst=`echo $$inst | sed -e 's/^.*\///'`; \
1.55 + inst=`echo $$inst | sed '$(transform)'`.$$ext; \
1.56 + echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
1.57 + $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst"; \
1.58 + done
1.59 +uninstall-man1:
1.60 + @$(NORMAL_UNINSTALL)
1.61 + @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \
1.62 + l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
1.63 + for i in $$l2; do \
1.64 + case "$$i" in \
1.65 + *.1*) list="$$list $$i" ;; \
1.66 + esac; \
1.67 + done; \
1.68 + for i in $$list; do \
1.69 + ext=`echo $$i | sed -e 's/^.*\\.//'`; \
1.70 + case "$$ext" in \
1.71 + 1*) ;; \
1.72 + *) ext='1' ;; \
1.73 + esac; \
1.74 + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
1.75 + inst=`echo $$inst | sed -e 's/^.*\///'`; \
1.76 + inst=`echo $$inst | sed '$(transform)'`.$$ext; \
1.77 + echo " rm -f '$(DESTDIR)$(man1dir)/$$inst'"; \
1.78 + rm -f "$(DESTDIR)$(man1dir)/$$inst"; \
1.79 + done
1.80
1.81 # This directory's subdirectories are mostly independent; you can cd
1.82 # into them and run `make' without going through this Makefile.
1.83 @@ -570,9 +622,12 @@
1.84 check-am: all-am
1.85 check: check-recursive
1.86 @GUI_COCOA_FALSE@all-local:
1.87 -all-am: Makefile config.h all-local
1.88 +all-am: Makefile $(MANS) config.h all-local
1.89 installdirs: installdirs-recursive
1.90 installdirs-am:
1.91 + for dir in "$(DESTDIR)$(man1dir)"; do \
1.92 + test -z "$$dir" || $(mkdir_p) "$$dir"; \
1.93 + done
1.94 install: install-recursive
1.95 install-exec: install-exec-recursive
1.96 install-data: install-data-recursive
1.97 @@ -616,13 +671,13 @@
1.98
1.99 info-am:
1.100
1.101 -install-data-am: install-data-local
1.102 +install-data-am: install-data-local install-man
1.103
1.104 install-exec-am:
1.105
1.106 install-info: install-info-recursive
1.107
1.108 -install-man:
1.109 +install-man: install-man1
1.110
1.111 installcheck-am:
1.112
1.113 @@ -644,10 +699,12 @@
1.114
1.115 ps-am:
1.116
1.117 -uninstall-am: uninstall-info-am
1.118 +uninstall-am: uninstall-info-am uninstall-man
1.119
1.120 uninstall-info: uninstall-info-recursive
1.121
1.122 +uninstall-man: uninstall-man1
1.123 +
1.124 .PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am all-local \
1.125 am--refresh check check-am clean clean-generic clean-recursive \
1.126 ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
1.127 @@ -657,13 +714,17 @@
1.128 dvi-am html html-am info info-am install install-am \
1.129 install-data install-data-am install-data-local install-exec \
1.130 install-exec-am install-info install-info-am install-man \
1.131 - install-strip installcheck installcheck-am installdirs \
1.132 - installdirs-am maintainer-clean maintainer-clean-generic \
1.133 - maintainer-clean-recursive mostlyclean mostlyclean-generic \
1.134 - mostlyclean-recursive pdf pdf-am ps ps-am tags tags-recursive \
1.135 - uninstall uninstall-am uninstall-info-am
1.136 + install-man1 install-strip installcheck installcheck-am \
1.137 + installdirs installdirs-am maintainer-clean \
1.138 + maintainer-clean-generic maintainer-clean-recursive \
1.139 + mostlyclean mostlyclean-generic mostlyclean-recursive pdf \
1.140 + pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
1.141 + uninstall-info-am uninstall-man uninstall-man1
1.142
1.143
1.144 +lxdream.1: lxdream.pod
1.145 + $(POD2MAN) $< $@
1.146 +
1.147 install-data-local:
1.148 @$(NORMAL_INSTALL)
1.149 if test -d $(srcdir)/pixmaps; then \
1.150 @@ -695,6 +756,8 @@
1.151 @GUI_COCOA_TRUE@ cp src/lxdream lxdream.app/Contents/MacOS
1.152 @GUI_COCOA_TRUE@ cp -R pixmaps/* lxdream.app/Contents/Resources
1.153 @GUI_COCOA_TRUE@ @echo --- Done ---
1.154 +
1.155 +bundle: all
1.156 # Tell versions [3.59,3.63) of GNU make to not export all variables.
1.157 # Otherwise a system limit (for SysV at least) may be exceeded.
1.158 .NOEXPORT:
.