From 269620b90047cf95cc8f65c98ca599d4fe18e779 Mon Sep 17 00:00:00 2001 From: Will Estes Date: Fri, 14 Feb 2014 07:52:31 -0500 Subject: move flex program sources into src/ directory The *.[chly] sources are now in the src directory. This implies a bunch of changes in Makefile.am and friends to account for the new location. The .gitignore files are now more local to places where various object files and generated source files occur. --- doc/.gitignore | 41 +++++++++++++++++++---------------------- doc/Makefile.am | 4 ++-- 2 files changed, 21 insertions(+), 24 deletions(-) (limited to 'doc') diff --git a/doc/.gitignore b/doc/.gitignore index c74bc7b..1568b38 100644 --- a/doc/.gitignore +++ b/doc/.gitignore @@ -1,29 +1,26 @@ -*.aux -*.cp -*.cps -*.dvi -*.fn -*.fns -*.hk -*.hks -*.info* -*.ky -*.log -*.op -*.ops -*.pg -*.toc -*.tp -*.tps -*.vr -*.vrs +flex.aux +flex.cp +flex.cps +flex.dvi +flex.fn +flex.fns +flex.hk +flex.hks +flex.info* +flex.ky +flex.log +flex.op +flex.ops +flex.pg +flex.toc +flex.tp +flex.tps +flex.vr +flex.vrs Makefile Makefile.in flex.1 flex.pdf flex.ps -mdate-sh -stamp-* version.texi flex.html -texinfo.tex diff --git a/doc/Makefile.am b/doc/Makefile.am index 0e23dca..961e41b 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -23,9 +23,9 @@ CLEANFILES = \ flex.vr \ flex.vrs -$(dist_man_MANS): $(top_srcdir)/main.c +$(dist_man_MANS): $(top_srcdir)/src/main.c for i in $(dist_man_MANS) ; do \ $(help2man) --name='$(PACKAGE_NAME)' \ --section=`echo $$i | sed -e 's/.*\.\([^.]*\)$$/\1/'` \ - ../flex$(EXEEXT) > $$i || rm -f $$i ; \ + $(top_srcdir)/src/flex$(EXEEXT) > $$i || rm -f $$i ; \ done -- cgit v1.2.3