Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit8101d0c

Browse files
committed
Makefile CFLAGS cleanups.
1 parenteead0e7 commit8101d0c

File tree

6 files changed

+13
-10
lines changed

6 files changed

+13
-10
lines changed

‎src/backend/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#
3535
#
3636
# IDENTIFICATION
37-
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.46 2000/04/08 19:38:00 momjian Exp $
37+
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.47 2000/05/11 17:46:28 momjian Exp $
3838
#
3939
#-------------------------------------------------------------------------
4040

@@ -80,7 +80,7 @@ all: postgres $(POSTGRES_IMP) global1.bki.source local1_template1.bki.source \
8080

8181
ifneq ($(PORTNAME), win)
8282
postgres: fmgr.h$(OBJS)$(VERSIONOBJ)
83-
$(CC) -o postgres$(OBJS)$(OBJS1)$(VERSIONOBJ)$(LDFLAGS)
83+
$(CC)$(CFLAGS)-o postgres$(OBJS)$(OBJS1)$(VERSIONOBJ)$(LDFLAGS)
8484
else
8585
postgres:$(DLLOBJS)$(SRCDIR)/utils/dllinit.o postgres.def libpostgres.a
8686
dlltool --dllname$@$(X) --output-exp$@.exp --def postgres.def

‎src/backend/port/Makefile.in

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# be converted to Method 2.
1414
#
1515
# IDENTIFICATION
16-
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.20 1999/12/16 01:25:02 momjian Exp $
16+
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.21 2000/05/11 17:46:31 momjian Exp $
1717
#
1818
#-------------------------------------------------------------------------
1919

@@ -38,6 +38,9 @@ qnx4/SUBSYS.o: qnx4.dir
3838
qnx4.dir:
3939
$(MAKE) -C qnx4 all
4040

41+
tas.o: tas.s
42+
$(CC)$(CFLAGS) -c tas.o tas.s$(LDFLAGS)
43+
4144
.PHONY: clean dep
4245

4346
distcleanclean:

‎src/bin/pg_dump/Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/Makefile.in,v 1.12 2000/03/08 01:58:19 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/bin/pg_dump/Attic/Makefile.in,v 1.13 2000/05/11 17:46:32 momjian Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -29,7 +29,7 @@ endif
2929
all: submake pg_dump
3030

3131
pg_dump:$(OBJS)$(LIBPQDIR)/libpq.a
32-
$(CC) -o pg_dump$(OBJS)$(LIBPQ)$(LDFLAGS)
32+
$(CC)$(CFLAGS)-o pg_dump$(OBJS)$(LIBPQ)$(LDFLAGS)
3333

3434
../../utils/strdup.o:
3535
$(MAKE) -C ../../utils strdup.o

‎src/bin/pg_passwd/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ OBJS= pg_passwd.o
1212
all: pg_passwd
1313

1414
pg_passwd:$(OBJS)
15-
$(CC) -o pg_passwd$(OBJS)$(LDFLAGS)
15+
$(CC)$(CFLAGS)-o pg_passwd$(OBJS)$(LDFLAGS)
1616

1717
install: pg_passwd
1818
$(INSTALL)$(INSTL_EXE_OPTS) pg_passwd$(X)$(BINDIR)/pg_passwd$(X)

‎src/bin/pg_version/Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Portions Copyright (c) 1994, Regents of the University of California
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/bin/pg_version/Attic/Makefile.in,v 1.7 2000/02/27 01:33:43 tgl Exp $
10+
# $Header: /cvsroot/pgsql/src/bin/pg_version/Attic/Makefile.in,v 1.8 2000/05/11 17:46:35 momjian Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -21,7 +21,7 @@ OBJS= pg_version.o $(SRCDIR)/utils/version.o @STRERROR2@
2121
all: pg_version
2222

2323
pg_version:$(OBJS)
24-
$(CC) -o pg_version$(OBJS)$(LDFLAGS)
24+
$(CC)$(CFLAGS)-o pg_version$(OBJS)$(LDFLAGS)
2525

2626
$(SRCDIR)/utils/version.o:$(SRCDIR)/utils/version.c$(SRCDIR)/include/version.h
2727
$(MAKE) -C$(SRCDIR)/utils version.o

‎src/bin/psql/Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/bin/psql/Attic/Makefile.in,v 1.23 2000/04/16 18:07:22 tgl Exp $
10+
# $Header: /cvsroot/pgsql/src/bin/psql/Attic/Makefile.in,v 1.24 2000/05/11 17:46:35 momjian Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -58,7 +58,7 @@ endif
5858
# End of hacks for picking up backend 'port' modules
5959

6060
psql:$(OBJS)$(LIBPQDIR)/libpq.a
61-
$(CC) -o psql$(OBJS)$(LIBPQ)$(LDFLAGS)
61+
$(CC)$(CFLAGS)-o psql$(OBJS)$(LIBPQ)$(LDFLAGS)
6262

6363
help.o: sql_help.h
6464

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp