diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-08-31 16:12:35 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-08-31 16:12:35 +0000 |
commit | 424f0edcb8d73446223f1812d3ca88150e1cc953 (patch) | |
tree | 6b0f0a9d1d9aed67873e9ff8acd2b5a6da77ac58 /src/tutorial | |
parent | d4266620e1c92d0b5d76d8c583f2fbfcf5bcd7fe (diff) | |
download | postgresql-424f0edcb8d73446223f1812d3ca88150e1cc953.tar.gz postgresql-424f0edcb8d73446223f1812d3ca88150e1cc953.zip |
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/tutorial')
-rw-r--r-- | src/tutorial/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/tutorial/Makefile b/src/tutorial/Makefile index f3fd6b24bac..80e28025f3e 100644 --- a/src/tutorial/Makefile +++ b/src/tutorial/Makefile @@ -4,12 +4,13 @@ # Makefile for tutorial # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.10 2000/05/29 05:45:56 tgl Exp $ +# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.11 2000/08/31 16:12:33 petere Exp $ # #------------------------------------------------------------------------- -SRCDIR= .. -include $(SRCDIR)/Makefile.global +subdir = src/tutorial +top_builddir = ../.. +include $(top_builddir)/src/Makefile.global CFLAGS+= $(CFLAGS_SL) |