diff options
author | Peter Eisentraut | 2000-08-31 16:12:35 +0000 |
---|---|---|
committer | Peter Eisentraut | 2000-08-31 16:12:35 +0000 |
commit | 424f0edcb8d73446223f1812d3ca88150e1cc953 (patch) | |
tree | 6b0f0a9d1d9aed67873e9ff8acd2b5a6da77ac58 /src/backend/port/Makefile.in | |
parent | d4266620e1c92d0b5d76d8c583f2fbfcf5bcd7fe (diff) |
Fix relative path references so that make knowns which dependencies refer
to one another. Sort out builddir vs srcdir variable namings. Remove some
now obsoleted make variables.
Diffstat (limited to 'src/backend/port/Makefile.in')
-rw-r--r-- | src/backend/port/Makefile.in | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/backend/port/Makefile.in b/src/backend/port/Makefile.in index 17605c41dac..eb7214cb36e 100644 --- a/src/backend/port/Makefile.in +++ b/src/backend/port/Makefile.in @@ -13,12 +13,13 @@ # be converted to Method 2. # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.23 2000/05/29 05:44:54 tgl Exp $ +# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.24 2000/08/31 16:10:16 petere Exp $ # #------------------------------------------------------------------------- -SRCDIR=../.. -include ../../Makefile.global +subdir = src/backend/port +top_builddir = ../../.. +include $(top_builddir)/src/Makefile.global OBJS = dynloader.o @INET_ATON@ @STRERROR@ @MISSING_RANDOM@ @SRANDOM@ OBJS+= @GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@ @TAS@ @ISINF@ @@ -39,8 +40,6 @@ qnx4.dir: tas.o: tas.s $(CC) $(CFLAGS) -c tas.s -.PHONY: clean dep - distclean clean: rm -f SUBSYS.o $(OBJS) |