diff options
Diffstat (limited to 'src/GNUmakefile.in')
| -rw-r--r-- | src/GNUmakefile.in | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/src/GNUmakefile.in b/src/GNUmakefile.in index dcd4a01732..9719c4d993 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 |
