diff options
author | Tom Lane | 2000-05-29 05:45:56 +0000 |
---|---|---|
committer | Tom Lane | 2000-05-29 05:45:56 +0000 |
commit | 091126fa28b4dbfd9df2fc4c22deade58f7e24dc (patch) | |
tree | 5a4c362f26fa5b00688831ffdf1dfff8b0f60f1f /src/backend/port/sunos4/Makefile | |
parent | 18952f67446da73f938d213b5225b99e95657837 (diff) |
Generated header files parse.h and fmgroids.h are now copied into
the src/include tree, so that -I backend is no longer necessary anywhere.
Also, clean up some bit rot in contrib tree.
Diffstat (limited to 'src/backend/port/sunos4/Makefile')
-rw-r--r-- | src/backend/port/sunos4/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/backend/port/sunos4/Makefile b/src/backend/port/sunos4/Makefile index 671150009ce..c9583340228 100644 --- a/src/backend/port/sunos4/Makefile +++ b/src/backend/port/sunos4/Makefile @@ -4,17 +4,13 @@ # Makefile for port/sparc # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/port/sunos4/Attic/Makefile,v 1.4 1999/12/13 22:33:15 momjian Exp $ +# $Header: /cvsroot/pgsql/src/backend/port/sunos4/Attic/Makefile,v 1.5 2000/05/29 05:44:57 tgl Exp $ # #------------------------------------------------------------------------- SRCDIR = ../../.. include ../../../Makefile.global -INCLUDE_OPT = -I../.. - -CFLAGS+=$(INCLUDE_OPT) - OBJS = strtol.o all: SUBSYS.o @@ -23,7 +19,7 @@ SUBSYS.o: $(OBJS) $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS) depend dep: - $(CC) -MM $(INCLUDE_OPT) *.c >depend + $(CC) -MM $(CFLAGS) *.c >depend clean: rm -f SUBSYS.o $(OBJS) |