filename | Makefile.in |
changeset | 749:f06c5a12903a |
prev | 748:4fa68ea01d29 |
next | 752:9458edce8861 |
author | nkeynes |
date | Sat Jul 19 02:34:11 2008 +0000 (13 years ago) |
permissions | -rw-r--r-- |
last change | Fix make clean target And therefore (finally) fix the distcheck target overall |
file | annotate | diff | log | raw |
1.1 --- a/Makefile.in Sat Jul 19 00:56:54 2008 +00001.2 +++ b/Makefile.in Sat Jul 19 02:34:11 2008 +00001.3 @@ -252,6 +252,7 @@1.4 SUBDIRS = src po $(TEST_SUBDIR)1.5 EXTRA_DIST = autogen.sh lxdream.pod bundlelibs.pl1.6 dist_sysconf_DATA = lxdreamrc1.7 +CLEANFILES = lxdream.11.8 man_MANS = lxdream.11.9 all: config.h1.10 $(MAKE) $(AM_MAKEFLAGS) all-recursive1.11 @@ -676,6 +677,7 @@1.12 mostlyclean-generic:1.14 clean-generic:1.15 + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)1.17 distclean-generic:1.18 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)1.19 @@ -685,7 +687,7 @@1.20 @echo "it deletes files that may require special tools to rebuild."1.21 clean: clean-recursive1.23 -clean-am: clean-generic mostlyclean-am1.24 +clean-am: clean-generic clean-local mostlyclean-am1.26 distclean: distclean-recursive1.27 -rm -f $(am__CONFIG_DISTCLEAN_FILES)1.28 @@ -738,10 +740,10 @@1.29 uninstall-man: uninstall-man11.31 .PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am all-local \1.32 - am--refresh check check-am clean clean-generic clean-recursive \1.33 - ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \1.34 - dist-hook dist-shar dist-tarZ dist-zip distcheck distclean \1.35 - distclean-generic distclean-hdr distclean-recursive \1.36 + am--refresh check check-am clean clean-generic clean-local \1.37 + clean-recursive ctags ctags-recursive dist dist-all dist-bzip2 \1.38 + dist-gzip dist-hook dist-shar dist-tarZ dist-zip distcheck \1.39 + distclean distclean-generic distclean-hdr distclean-recursive \1.40 distclean-tags distcleancheck distdir distuninstallcheck dvi \1.41 dvi-am html html-am info info-am install install-am \1.42 install-data install-data-am install-data-local \1.43 @@ -774,6 +776,9 @@1.44 @$(NORMAL_UNINSTALL)1.45 rm -rf $(DESTDIR)$(datadir)/pixmaps1.47 +clean-local:1.48 + rm -rf $(BUNDLE)1.49 +1.50 dist-hook:1.51 if test -d $(srcdir)/pixmaps; then \1.52 mkdir $(distdir)/pixmaps; \
.