Commit 2730c4a4 authored by Marc G. Fournier's avatar Marc G. Fournier

Knew I missed somewhere...remove PORTNAME references from GNUmakefile.in, since

PORTNAME should not be used anywhere anymore...I hope :)
parent 031f471f
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
# #
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.21 1997/12/22 05:56:43 momjian Exp $ # $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.22 1997/12/26 22:35:53 scrappy Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -24,12 +24,6 @@ ETAGS = @etags@ ...@@ -24,12 +24,6 @@ ETAGS = @etags@
XARGS = @xargs@ XARGS = @xargs@
all: all:
@if test "$(PORTNAME)" = UNDEFINED; then \
echo You must set the PORTNAME value in Makefile.global before \
you can build Postgres. ;\
false ;\
else true;\
fi
$(MAKE) -C lextest all $(MAKE) -C lextest all
@if test ! -f lextest/lextest; then \ @if test ! -f lextest/lextest; then \
echo "";\ echo "";\
...@@ -51,12 +45,6 @@ endif ...@@ -51,12 +45,6 @@ endif
fi fi
install: install:
@if test "$(PORTNAME)" = UNDEFINED; then \
echo You must set the PORTNAME value in Makefile.global before \
you can build Postgres. ;\
false ;\
else true;\
fi
$(MAKE) -C lextest install $(MAKE) -C lextest install
$(MAKE) -C utils install $(MAKE) -C utils install
$(MAKE) -C backend install $(MAKE) -C backend install
...@@ -68,12 +56,6 @@ endif ...@@ -68,12 +56,6 @@ endif
cat ../register.txt cat ../register.txt
clean: clean:
@if test "$(PORTNAME)" = UNDEFINED; then \
echo You must set the PORTNAME value in Makefile.global before \
you can build Postgres. ;\
false ;\
else true;\
fi
$(MAKE) -C lextest clean $(MAKE) -C lextest clean
$(MAKE) -C utils clean $(MAKE) -C utils clean
$(MAKE) -C backend clean $(MAKE) -C backend clean
...@@ -101,12 +83,6 @@ distclean: clean ...@@ -101,12 +83,6 @@ distclean: clean
.DEFAULT: .DEFAULT:
@if test "$(PORTNAME)" = UNDEFINED; then \
echo You must set the PORTNAME value in Makefile.global before \
you can build Postgres. ;\
false ;\
else true;\
fi
$(MAKE) -C lextest $@ $(MAKE) -C lextest $@
$(MAKE) -C utils $@ $(MAKE) -C utils $@
$(MAKE) -C backend $@ $(MAKE) -C backend $@
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment