OSDN Git Service

lextest Makefile cleanup
authorBruce Momjian <bruce@momjian.us>
Wed, 14 May 1997 04:46:47 +0000 (04:46 +0000)
committerBruce Momjian <bruce@momjian.us>
Wed, 14 May 1997 04:46:47 +0000 (04:46 +0000)
src/GNUmakefile.in
src/lextest/Makefile

index d34beb9..794104c 100644 (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 $@
index efbc20d..4f8e167 100644 (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