File tree Expand file tree Collapse file tree 7 files changed +16
-18
lines changed Expand file tree Collapse file tree 7 files changed +16
-18
lines changed Original file line number Diff line number Diff line change 55# Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
66# Portions Copyright (c) 1994, Regents of the University of California
77#
8- # $PostgreSQL: pgsql/src/bin/initdb/Makefile,v 1.40 2004/05/19 17:15:20 momjian Exp $
8+ # $PostgreSQL: pgsql/src/bin/initdb/Makefile,v 1.41 2004/05/24 01:01:37 momjian Exp $
99#
1010# -------------------------------------------------------------------------
1111
@@ -15,8 +15,7 @@ include $(top_builddir)/src/Makefile.global
1515
1616override CPPFLAGS := -DFRONTEND -I$(libpq_srcdir ) $(CPPFLAGS )
1717
18- OBJS = initdb.o \
19- $(filter exec.o, $(LIBOBJS ) )
18+ OBJS = initdb.o exec.o
2019
2120all : submake-libpq submake-libpgport initdb
2221
Original file line number Diff line number Diff line change 55# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
66# Portions Copyright (c) 1994, Regents of the University of California
77#
8- # $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.50 2004/05/22 02:14:28 tgl Exp $
8+ # $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.51 2004/05/24 01:01:37 momjian Exp $
99#
1010# -------------------------------------------------------------------------
1111
@@ -18,7 +18,7 @@ override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS) -DFRONTEND
1818OBJS = pg_backup_archiver.o pg_backup_db.o pg_backup_custom.o \
1919 pg_backup_files.o pg_backup_null.o pg_backup_tar.o \
2020 dumputils.o
21- PG_DUMPALL_OBJS = $( filter exec.o, $( LIBOBJS ) )
21+ PG_DUMPALL_OBJS = exec.o
2222
2323EXTRA_OBJS = $(top_builddir ) /src/backend/parser/keywords.o
2424
Original file line number Diff line number Diff line change 44#
55# Copyright (c) 1998-2002, PostgreSQL Global Development Group
66#
7- # $PostgreSQL: pgsql/src/bin/pg_resetxlog/Makefile,v 1.8 2004/04/30 20 :01:39 momjian Exp $
7+ # $PostgreSQL: pgsql/src/bin/pg_resetxlog/Makefile,v 1.9 2004/05/24 01 :01:37 momjian Exp $
88#
99# -------------------------------------------------------------------------
1010
@@ -14,8 +14,7 @@ include $(top_builddir)/src/Makefile.global
1414
1515override CPPFLAGS += -DFRONTEND
1616
17- OBJS = pg_resetxlog.o pg_crc.o \
18- $(filter dirmod.o, $(LIBOBJS ) )
17+ OBJS = pg_resetxlog.o pg_crc.o dirmod.o
1918
2019all : submake-libpgport pg_resetxlog
2120
Original file line number Diff line number Diff line change 55# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
66# Portions Copyright (c) 1994, Regents of the University of California
77#
8- # $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.46 2004/05/19 17:15:21 momjian Exp $
8+ # $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.47 2004/05/24 01:01:37 momjian Exp $
99#
1010# -------------------------------------------------------------------------
1111
@@ -19,8 +19,7 @@ override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS) -DFRONTEND
1919
2020OBJS = command.o common.o help.o input.o stringutils.o mainloop.o copy.o \
2121 startup.o prompt.o variables.o large_obj.o print.o describe.o \
22- psqlscan.o tab-complete.o mbprint.o \
23- $(filter exec.o, $(LIBOBJS ) )
22+ psqlscan.o tab-complete.o mbprint.o exec.o
2423
2524FLEXFLAGS = -Cfe
2625
Original file line number Diff line number Diff line change 44#
55# Copyright (c) 1994, Regents of the University of California
66#
7- # $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/Makefile,v 1.19 2004/05/07 13:42:48 meskes Exp $
7+ # $PostgreSQL: pgsql/src/interfaces/ecpg/pgtypeslib/Makefile,v 1.20 2004/05/24 01:01:38 momjian Exp $
88#
99# -------------------------------------------------------------------------
1010
@@ -23,7 +23,8 @@ override CPPFLAGS := -I$(top_srcdir)/src/interfaces/ecpg/include \
2323SHLIB_LINK += -lm
2424
2525OBJS = numeric.o datetime.o common.o dt_common.o timestamp.o interval.o \
26- $(filter rint.o, $(LIBOBJS ) ) $(filter pgstrcasecmp.o, $(LIBOBJS ) )
26+ pgstrcasecmp.o \
27+ $(filter rint.o, $(LIBOBJS ) )
2728
2829all : all-lib
2930
Original file line number Diff line number Diff line change 1- # $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.106 2004/05/19 17:15:21 momjian Exp $
1+ # $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.107 2004/05/24 01:01:38 momjian Exp $
22
33subdir = src/interfaces/ecpg/preproc
44top_builddir = ../../../..
@@ -20,7 +20,7 @@ override CFLAGS += $(PTHREAD_CFLAGS)
2020
2121OBJS = preproc.o type.o ecpg.o ecpg_keywords.o output.o\
2222 keywords.o c_keywords.o ../ecpglib/typename.o descriptor.o variable.o \
23- $( filter exec.o, $( LIBOBJS ) )
23+ exec.o
2424
2525all : submake-libpgport ecpg
2626
Original file line number Diff line number Diff line change 44#
55# Copyright (c) 1994, Regents of the University of California
66#
7- # $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.108 2004/05/21 20:56:49 tgl Exp $
7+ # $PostgreSQL: pgsql/src/interfaces/libpq/Makefile,v 1.109 2004/05/24 01:01:38 momjian Exp $
88#
99# -------------------------------------------------------------------------
1010
@@ -23,8 +23,8 @@ override CFLAGS += $(PTHREAD_CFLAGS)
2323
2424OBJS = fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o \
2525 fe-protocol2.o fe-protocol3.o pqexpbuffer.o pqsignal.o fe-secure.o \
26- dllist.o md5.o ip.o wchar.o encnames.o \
27- $(filter crypt.o getaddrinfo.o inet_aton.o noblock .o pgstrcasecmp.o snprintf.o strerror.o open.o thread .o, $(LIBOBJS ) )
26+ dllist.o md5.o ip.o wchar.o encnames.o noblock.o pgstrcasecmp.o thread.o \
27+ $(filter crypt.o getaddrinfo.o inet_aton.o open .o snprintf.o strerror.o, $(LIBOBJS ) )
2828ifeq ($(PORTNAME ) , win32)
2929OBJS+ =win32.o
3030endif
You can’t perform that action at this time.
0 commit comments