summaryrefslogtreecommitdiff
path: root/src/GNUmakefile.in
diff options
context:
space:
mode:
authorThomas G. Lockhart1998-10-07 06:38:29 +0000
committerThomas G. Lockhart1998-10-07 06:38:29 +0000
commit608dbb1b3e15d88928bd045bdf0f6dc31a17ab6d (patch)
tree5e53f4c978d9ad955c397108096e798f011b3a76 /src/GNUmakefile.in
parent3e66e2b17b3eaebd9b35d9f4a178150a12d9b405 (diff)
Separate out the lextest so that it is run by "make" and "make install".
Before, "make install" did not run the lextest. Fix up the ODBC make from this main configure. Include configure test for "ln -s" in Makefile.global.in. Was always in configure, just not carried through to here for use.
Diffstat (limited to 'src/GNUmakefile.in')
-rw-r--r--src/GNUmakefile.in27
1 files changed, 15 insertions, 12 deletions
diff --git a/src/GNUmakefile.in b/src/GNUmakefile.in
index dcd4a01732b..9719c4d9936 100644
--- a/src/GNUmakefile.in
+++ b/src/GNUmakefile.in
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.30 1998/10/06 05:42:55 thomas Exp $
+# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.31 1998/10/07 06:38:27 thomas Exp $
#
#-------------------------------------------------------------------------
@@ -24,15 +24,7 @@ ETAGS = @etags@
XARGS = @xargs@
all:
- $(MAKE) -C lextest all
- @if test ! -f lextest/lextest; then \
- echo "";\
- echo "You have a buggy version of flex. Read INSTALL and search for flex for a fix.";\
- echo "";\
- false;\
- else \
- true;\
- fi
+ $(MAKE) lexverify
$(MAKE) -C utils all
$(MAKE) -C backend all
$(MAKE) -C interfaces all
@@ -43,14 +35,25 @@ all:
fi
install:
- $(MAKE) -C lextest install
+ $(MAKE) lexverify
$(MAKE) -C utils install
$(MAKE) -C backend install
+ $(MAKE) -C interfaces install
$(MAKE) -C bin install
$(MAKE) -C pl install
- $(MAKE) -C interfaces install
cat ../register.txt
+lexverify:
+ $(MAKE) -C lextest all
+ @if test ! -f lextest/lextest; then \
+ echo "";\
+ echo "You have a buggy version of flex. Read INSTALL and search for flex for a fix.";\
+ echo "";\
+ false;\
+ else \
+ true;\
+ fi
+
clean:
$(MAKE) -C lextest clean
$(MAKE) -C utils clean