We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parenteead0e7 commit8101d0cCopy full SHA for 8101d0c
src/backend/Makefile
@@ -34,7 +34,7 @@
34
#
35
36
# IDENTIFICATION
37
-# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.46 2000/04/08 19:38:00 momjian Exp $
+# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.47 2000/05/11 17:46:28 momjian Exp $
38
39
#-------------------------------------------------------------------------
40
@@ -80,7 +80,7 @@ all: postgres $(POSTGRES_IMP) global1.bki.source local1_template1.bki.source \
80
81
ifneq ($(PORTNAME), win)
82
postgres: fmgr.h$(OBJS)$(VERSIONOBJ)
83
-$(CC) -o postgres$(OBJS)$(OBJS1)$(VERSIONOBJ)$(LDFLAGS)
+$(CC)$(CFLAGS)-o postgres$(OBJS)$(OBJS1)$(VERSIONOBJ)$(LDFLAGS)
84
else
85
postgres:$(DLLOBJS)$(SRCDIR)/utils/dllinit.o postgres.def libpostgres.a
86
dlltool --dllname$@$(X) --output-exp$@.exp --def postgres.def
src/backend/port/Makefile.in
@@ -13,7 +13,7 @@
13
# be converted to Method 2.
14
15
16
-# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.20 1999/12/16 01:25:02 momjian Exp $
+# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.21 2000/05/11 17:46:31 momjian Exp $
17
18
19
@@ -38,6 +38,9 @@ qnx4/SUBSYS.o: qnx4.dir
qnx4.dir:
$(MAKE) -C qnx4 all
41
+tas.o: tas.s
42
+$(CC)$(CFLAGS) -c tas.o tas.s$(LDFLAGS)
43
+
44
.PHONY: clean dep
45
46
distcleanclean:
src/bin/pg_dump/Makefile.in
@@ -7,7 +7,7 @@
7
8
9
10
-# $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/Makefile.in,v 1.12 2000/03/08 01:58:19 momjian Exp $
+# $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/Makefile.in,v 1.13 2000/05/11 17:46:32 momjian Exp $
11
12
@@ -29,7 +29,7 @@ endif
29
all: submake pg_dump
30
31
pg_dump:$(OBJS)$(LIBPQDIR)/libpq.a
32
-$(CC) -o pg_dump$(OBJS)$(LIBPQ)$(LDFLAGS)
+$(CC)$(CFLAGS)-o pg_dump$(OBJS)$(LIBPQ)$(LDFLAGS)
33
../../utils/strdup.o:
$(MAKE) -C ../../utils strdup.o
src/bin/pg_passwd/Makefile
@@ -12,7 +12,7 @@ OBJS= pg_passwd.o
all: pg_passwd
pg_passwd:$(OBJS)
-$(CC) -o pg_passwd$(OBJS)$(LDFLAGS)
+$(CC)$(CFLAGS)-o pg_passwd$(OBJS)$(LDFLAGS)
install: pg_passwd
$(INSTALL)$(INSTL_EXE_OPTS) pg_passwd$(X)$(BINDIR)/pg_passwd$(X)
src/bin/pg_version/Makefile.in
# Portions Copyright (c) 1994, Regents of the University of California
-# $Header: /cvsroot/pgsql/src/bin/pg_version/Attic/Makefile.in,v 1.7 2000/02/27 01:33:43 tgl Exp $
+# $Header: /cvsroot/pgsql/src/bin/pg_version/Attic/Makefile.in,v 1.8 2000/05/11 17:46:35 momjian Exp $
@@ -21,7 +21,7 @@ OBJS= pg_version.o $(SRCDIR)/utils/version.o @STRERROR2@
21
all: pg_version
22
23
pg_version:$(OBJS)
24
-$(CC) -o pg_version$(OBJS)$(LDFLAGS)
+$(CC)$(CFLAGS)-o pg_version$(OBJS)$(LDFLAGS)
25
26
$(SRCDIR)/utils/version.o:$(SRCDIR)/utils/version.c$(SRCDIR)/include/version.h
27
$(MAKE) -C$(SRCDIR)/utils version.o
src/bin/psql/Makefile.in
-# $Header: /cvsroot/pgsql/src/bin/psql/Attic/Makefile.in,v 1.23 2000/04/16 18:07:22 tgl Exp $
+# $Header: /cvsroot/pgsql/src/bin/psql/Attic/Makefile.in,v 1.24 2000/05/11 17:46:35 momjian Exp $
@@ -58,7 +58,7 @@ endif
58
# End of hacks for picking up backend 'port' modules
59
60
psql:$(OBJS)$(LIBPQDIR)/libpq.a
61
-$(CC) -o psql$(OBJS)$(LIBPQ)$(LDFLAGS)
+$(CC)$(CFLAGS)-o psql$(OBJS)$(LIBPQ)$(LDFLAGS)
62
63
help.o: sql_help.h
64