aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/GNUmakefile.in4
-rw-r--r--src/lextest/Makefile12
2 files changed, 12 insertions, 4 deletions
diff --git a/src/GNUmakefile.in b/src/GNUmakefile.in
index d34beb9fbd6..794104c9983 100644
--- a/src/GNUmakefile.in
+++ b/src/GNUmakefile.in
@@ -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 $@
diff --git a/src/lextest/Makefile b/src/lextest/Makefile
index efbc20d34a5..4f8e167a85e 100644
--- a/src/lextest/Makefile
+++ b/src/lextest/Makefile
@@ -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