[lwatch-cvs] files Makefile.in,1.1,1.2 acconfig.h,1.1,1.2
Brought to you by:
arturcz
|
From: <os...@us...> - 2002-08-08 14:35:27
|
Update of /cvsroot/lwatch/files In directory usw-pr-cvs1:/tmp/cvs-serv20280 Modified Files: Makefile.in acconfig.h Log Message: Removed old src/Makefile. Included config.h in all apropriate places (I hope so ;) ). Index: Makefile.in =================================================================== RCS file: /cvsroot/lwatch/files/Makefile.in,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile.in 8 Aug 2002 14:03:50 -0000 1.1 --- Makefile.in 8 Aug 2002 14:35:23 -0000 1.2 *************** *** 76,81 **** CONFIG_CLEAN_FILES = DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \ ! Makefile.in NEWS aclocal.m4 config.guess config.sub configure \ ! configure.in install-sh missing mkinstalldirs --- 76,82 ---- CONFIG_CLEAN_FILES = DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \ ! Makefile.in NEWS acconfig.h aclocal.m4 config.guess config.sub \ ! configure configure.in install-sh missing mkinstalldirs src/config.h.in \ ! src/stamp-h.in *************** *** 101,104 **** --- 102,133 ---- cd $(srcdir) && $(AUTOCONF) + src/config.h: src/stamp-h + @if test ! -f $@; then \ + rm -f src/stamp-h; \ + $(MAKE) src/stamp-h; \ + else :; fi + src/stamp-h: $(srcdir)/src/config.h.in $(top_builddir)/config.status + cd $(top_builddir) \ + && CONFIG_FILES= CONFIG_HEADERS=src/config.h \ + $(SHELL) ./config.status + @echo timestamp > src/stamp-h 2> /dev/null + $(srcdir)/src/config.h.in: $(srcdir)/src/stamp-h.in + @if test ! -f $@; then \ + rm -f $(srcdir)/src/stamp-h.in; \ + $(MAKE) $(srcdir)/src/stamp-h.in; \ + else :; fi + $(srcdir)/src/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h + cd $(top_srcdir) && $(AUTOHEADER) + @echo timestamp > $(srcdir)/src/stamp-h.in 2> /dev/null + + mostlyclean-hdr: + + clean-hdr: + + distclean-hdr: + -rm -f src/config.h + + maintainer-clean-hdr: + # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. *************** *** 289,307 **** maintainer-clean-generic: ! mostlyclean-am: mostlyclean-tags mostlyclean-generic mostlyclean: mostlyclean-recursive ! clean-am: clean-tags clean-generic mostlyclean-am clean: clean-recursive ! distclean-am: distclean-tags distclean-generic clean-am distclean: distclean-recursive -rm -f config.status ! maintainer-clean-am: maintainer-clean-tags maintainer-clean-generic \ ! distclean-am @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." --- 318,336 ---- maintainer-clean-generic: ! mostlyclean-am: mostlyclean-hdr mostlyclean-tags mostlyclean-generic mostlyclean: mostlyclean-recursive ! clean-am: clean-hdr clean-tags clean-generic mostlyclean-am clean: clean-recursive ! distclean-am: distclean-hdr distclean-tags distclean-generic clean-am distclean: distclean-recursive -rm -f config.status ! maintainer-clean-am: maintainer-clean-hdr maintainer-clean-tags \ ! maintainer-clean-generic distclean-am @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." *************** *** 310,318 **** -rm -f config.status ! .PHONY: install-data-recursive uninstall-data-recursive \ ! install-exec-recursive uninstall-exec-recursive installdirs-recursive \ ! uninstalldirs-recursive all-recursive check-recursive \ ! installcheck-recursive info-recursive dvi-recursive \ ! mostlyclean-recursive distclean-recursive clean-recursive \ maintainer-clean-recursive tags tags-recursive mostlyclean-tags \ distclean-tags clean-tags maintainer-clean-tags distdir info-am info \ --- 339,347 ---- -rm -f config.status ! .PHONY: mostlyclean-hdr distclean-hdr clean-hdr maintainer-clean-hdr \ ! install-data-recursive uninstall-data-recursive install-exec-recursive \ ! uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \ ! all-recursive check-recursive installcheck-recursive info-recursive \ ! dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \ maintainer-clean-recursive tags tags-recursive mostlyclean-tags \ distclean-tags clean-tags maintainer-clean-tags distdir info-am info \ Index: acconfig.h =================================================================== RCS file: /cvsroot/lwatch/files/acconfig.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** acconfig.h 8 Aug 2002 14:03:50 -0000 1.1 --- acconfig.h 8 Aug 2002 14:35:24 -0000 1.2 *************** *** 1,3 **** #undef PACKAGE #undef VERSION - #undef DEBUG --- 1,3 ---- + #undef DEBUG #undef PACKAGE #undef VERSION |