From: Will Estes Date: Tue, 5 Jun 2001 20:39:16 +0000 (+0000) Subject: change references to TESTS/ to tests/ to account for the directory name changes X-Git-Tag: flex-2-5-5c~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=18bfee45c7984949416d536556c7856c150ee3a2;p=flex change references to TESTS/ to tests/ to account for the directory name changes --- diff --git a/Makefile.in b/Makefile.in index 83da6a6..41bf357 100644 --- a/Makefile.in +++ b/Makefile.in @@ -77,7 +77,7 @@ LINTSRCS = ccl.c dfa.c ecs.c gen.c main.c misc.c nfa.c parse.c \ DISTFILES = README NEWS COPYING INSTALL FlexLexer.h \ configure.in conf.in Makefile.in mkskel.sh flex.skl \ - $(HEADERS) $(SOURCES) $(LIBSRCS) MISC TESTS \ + $(HEADERS) $(SOURCES) $(LIBSRCS) MISC tests \ flex.1 scan.c install.sh mkinstalldirs configure DIST_NAME = flex @@ -224,13 +224,13 @@ maintainer-clean: distclean rm -f $(FLEX).man skel.c flex*.tar.gz flex*.tar.Z TESTclean: - if test -e "TESTS/Makefile" ; then \ - cd TESTS && $(MAKE) clean ; \ + if test -e "tests/Makefile" ; then \ + cd tests && $(MAKE) clean ; \ fi TESTdistclean: - if test -e "TESTS/Makefile" ; then \ - cd TESTS && $(MAKE) distclean ; \ + if test -e "tests/Makefile" ; then \ + cd tests && $(MAKE) distclean ; \ fi diff --git a/configure.in b/configure.in index 531181c..818244a 100644 --- a/configure.in +++ b/configure.in @@ -20,7 +20,7 @@ case "$YACC" in ;; esac -AC_CONFIG_SUBDIRS(TESTS) +AC_CONFIG_SUBDIRS(tests) AC_OUTPUT(Makefile, [test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h])