diff options
| author | Marc G. Fournier | 1998-02-27 02:41:21 +0000 |
|---|---|---|
| committer | Marc G. Fournier | 1998-02-27 02:41:21 +0000 |
| commit | 296a942b56e17b9d73136900a2e692f4debd8b01 (patch) | |
| tree | df329572c8eb256da53a466c8b1929971811b06c /src/utils | |
| parent | 877224154d0acd2818e3b6e957128de43dab00e8 (diff) | |
From: Darren King <darrenk@insightdist.com>
This patch will...
1. Remove the "-Wall" option from the ecpg/lib and ecpg/preproc Makefile.
2. Remove the addition of $(SRCDIR)/include and-or $(SRCDIR)/backend from
ecpg/lib, ecpg/preproc, libpq and utils Makefiles. Already in CFLAGS...
3. Set MK_NO_LORDER and RANLIB in Makefile.aix to avoid a couple of extra
steps taken care of by the 'ld' command anyways.
Diffstat (limited to 'src/utils')
| -rw-r--r-- | src/utils/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/utils/Makefile b/src/utils/Makefile index 16957f2b4b..c695b56988 100644 --- a/src/utils/Makefile +++ b/src/utils/Makefile @@ -4,7 +4,7 @@ # Makefile for utils # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/utils/Attic/Makefile,v 1.3 1996/11/26 07:39:11 bryanh Exp $ +# $Header: /cvsroot/pgsql/src/utils/Attic/Makefile,v 1.4 1998/02/27 02:41:21 scrappy Exp $ # # About strdup: Some systems have strdup in their standard library, others # don't. Ones that don't will use this make file to compile the strdup.c @@ -18,16 +18,12 @@ SRCDIR = .. include ../Makefile.global -INCLUDE_OPT = -I../include - -CFLAGS+=$(INCLUDE_OPT) - all: version.o install: depend dep: - $(CC) -MM $(INCLUDE_OPT) *.c >depend + $(CC) -MM *.c >depend clean: rm -f version.o |
