From: Hans-Bernhard B. <br...@us...> - 2006-09-30 17:31:20
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv18761/src Modified Files: Makefile.am Makefile.in Log Message: Keep and distribute lex and yacc output files. Index: Makefile.am =================================================================== RCS file: /cvsroot/cscope/cscope/src/Makefile.am,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** Makefile.am 30 Sep 2006 16:51:45 -0000 1.10 --- Makefile.am 30 Sep 2006 17:31:14 -0000 1.11 *************** *** 20,29 **** endif ! cscope_SOURCES = $(LEXER_SOURCE) egrep.y \ ! alloc.c basename.c build.c build.h command.c compath.c constants.h crossref.c dir.c \ ! display.c edit.c exec.c find.c global.h help.c history.c input.c \ ! invlib.c invlib.h library.h logdir.c lookup.c lookup.h main.c mouse.c \ ! mygetenv.c mypopen.c scanner.h version.h vp.h vpaccess.c vpfopen.c \ ! vpinit.c vpopen.c EXTRA_cscope_SOURCES = scanner.l fscanner.l --- 20,28 ---- endif ! cscope_SOURCES = $(LEXER_SOURCE) egrep.y alloc.c alloc.h basename.c build.c \ ! build.h command.c compath.c constants.h crossref.c dir.c display.c edit.c \ ! exec.c find.c global.h help.c history.c input.c invlib.c invlib.h library.h \ ! logdir.c lookup.c lookup.h main.c mouse.c mygetenv.c mypopen.c scanner.h \ ! version.h vp.h vpaccess.c vpfopen.c vpinit.c vpopen.c EXTRA_cscope_SOURCES = scanner.l fscanner.l *************** *** 36,42 **** ## Hack to clean the generated files and not include them in a "make dist". ! CLEANFILES = scanner.c fscanner.c egrep.c ! dist-hook: ! rm -f $(distdir)/scanner.c $(distdir)/fscanner.c $(distdir)/egrep.c EXTRA_DIST = emacs.e gmacs.ml --- 35,41 ---- ## Hack to clean the generated files and not include them in a "make dist". ! # CLEANFILES = scanner.c fscanner.c egrep.c ! #dist-hook: ! # rm -f $(distdir)/scanner.c $(distdir)/fscanner.c $(distdir)/egrep.c EXTRA_DIST = emacs.e gmacs.ml Index: Makefile.in =================================================================== RCS file: /cvsroot/cscope/cscope/src/Makefile.in,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** Makefile.in 30 Sep 2006 16:51:45 -0000 1.12 --- Makefile.in 30 Sep 2006 17:31:14 -0000 1.13 *************** *** 52,56 **** binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) ! am__cscope_SOURCES_DIST = fscanner.l scanner.l egrep.y alloc.c \ basename.c build.c build.h command.c compath.c constants.h \ crossref.c dir.c display.c edit.c exec.c find.c global.h \ --- 52,56 ---- binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) ! am__cscope_SOURCES_DIST = fscanner.l scanner.l egrep.y alloc.c alloc.h \ basename.c build.c build.h command.c compath.c constants.h \ crossref.c dir.c display.c edit.c exec.c find.c global.h \ *************** *** 74,78 **** cscope_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) am__gscope_SOURCES_DIST = gscope.c fscanner.l scanner.l egrep.y \ ! alloc.c basename.c build.c build.h command.c compath.c \ constants.h crossref.c dir.c display.c edit.c exec.c find.c \ global.h help.c history.c input.c invlib.c invlib.h library.h \ --- 74,78 ---- cscope_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) am__gscope_SOURCES_DIST = gscope.c fscanner.l scanner.l egrep.y \ ! alloc.c alloc.h basename.c build.c build.h command.c compath.c \ constants.h crossref.c dir.c display.c edit.c exec.c find.c \ global.h help.c history.c input.c invlib.c invlib.h library.h \ *************** *** 220,234 **** @USING_LEX_FALSE@LEXER_SOURCE = fscanner.l @USING_LEX_TRUE@LEXER_SOURCE = scanner.l ! cscope_SOURCES = $(LEXER_SOURCE) egrep.y \ ! alloc.c basename.c build.c build.h command.c compath.c constants.h crossref.c dir.c \ ! display.c edit.c exec.c find.c global.h help.c history.c input.c \ ! invlib.c invlib.h library.h logdir.c lookup.c lookup.h main.c mouse.c \ ! mygetenv.c mypopen.c scanner.h version.h vp.h vpaccess.c vpfopen.c \ ! vpinit.c vpopen.c EXTRA_cscope_SOURCES = scanner.l fscanner.l cscope_LDADD = $(CURSES_LIBS) $(LEXLIB) AM_CPPFLAGS = $(CURSES_INCLUDEDIR) ! CLEANFILES = scanner.c fscanner.c egrep.c EXTRA_DIST = emacs.e gmacs.ml @HAS_GNOME_TRUE@GNOME_SWITCH = -DUSING_GNOME_UI --- 220,236 ---- @USING_LEX_FALSE@LEXER_SOURCE = fscanner.l @USING_LEX_TRUE@LEXER_SOURCE = scanner.l ! cscope_SOURCES = $(LEXER_SOURCE) egrep.y alloc.c alloc.h basename.c build.c \ ! build.h command.c compath.c constants.h crossref.c dir.c display.c edit.c \ ! exec.c find.c global.h help.c history.c input.c invlib.c invlib.h library.h \ ! logdir.c lookup.c lookup.h main.c mouse.c mygetenv.c mypopen.c scanner.h \ ! version.h vp.h vpaccess.c vpfopen.c vpinit.c vpopen.c EXTRA_cscope_SOURCES = scanner.l fscanner.l cscope_LDADD = $(CURSES_LIBS) $(LEXLIB) AM_CPPFLAGS = $(CURSES_INCLUDEDIR) ! ! # CLEANFILES = scanner.c fscanner.c egrep.c ! #dist-hook: ! # rm -f $(distdir)/scanner.c $(distdir)/fscanner.c $(distdir)/egrep.c EXTRA_DIST = emacs.e gmacs.ml @HAS_GNOME_TRUE@GNOME_SWITCH = -DUSING_GNOME_UI *************** *** 867,873 **** fi; \ done - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" distdir="$(distdir)" \ - dist-hook check-am: all-am check: check-am --- 869,872 ---- *************** *** 894,898 **** clean-generic: - -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: --- 893,896 ---- *************** *** 955,959 **** .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ ! clean-generic ctags dist-hook distclean distclean-compile \ distclean-generic distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ --- 953,957 ---- .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ ! clean-generic ctags distclean distclean-compile \ distclean-generic distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ *************** *** 965,970 **** uninstall-am uninstall-binPROGRAMS uninstall-info-am - dist-hook: - rm -f $(distdir)/scanner.c $(distdir)/fscanner.c $(distdir)/egrep.c # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 963,966 ---- |