lextest Makefile cleanup

This commit is contained in:
Bruce Momjian 1997-05-14 04:46:47 +00:00
parent 9fd868d16a
commit bb50eeb740
2 changed files with 12 additions and 4 deletions

View File

@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.13 1997/05/14 03:32:16 momjian Exp $
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.14 1997/05/14 04:46:32 momjian Exp $
#
#-------------------------------------------------------------------------
@ -55,6 +55,7 @@ clean:
false ;\
else true;\
fi
$(MAKE) -C lextest clean
$(MAKE) -C utils clean
$(MAKE) -C backend clean
$(MAKE) -C libpq clean
@ -92,6 +93,7 @@ distclean: clean
false ;\
else true;\
fi
$(MAKE) -C lextest $@
$(MAKE) -C utils $@
$(MAKE) -C backend $@
$(MAKE) -C libpq $@

View File

@ -1,8 +1,14 @@
#
# Makefile - tests for 2.5.3 flex bug
# Makefile - test for 2.5.3 flex bug
# Bruce Momjian 5/14/97
#
#
lextest : lextest.c scan.l
.DEFAULT all : lextest
install:
depend:
lextest: lextest.c scan.l
$(LEX) scan.l
$(CC) -c lex.yy.c
$(CC) -c lextest.c