File tree Expand file tree Collapse file tree 3 files changed +44
-23
lines changed Expand file tree Collapse file tree 3 files changed +44
-23
lines changed Original file line number Diff line number Diff line change 4
4
# Makefile for the bootstrap module
5
5
#
6
6
# IDENTIFICATION
7
- # $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.3 1996/11/09 06:17:44 momjian Exp $
7
+ # $Header: /cvsroot/pgsql/src/backend/bootstrap/Makefile,v 1.4 1996/11/14 07:33:20 bryanh Exp $
8
8
#
9
9
#
10
10
# We must build bootparse.c and bootscanner.c with yacc and lex and sed,
18
18
#
19
19
# -------------------------------------------------------------------------
20
20
21
- SRCDIR = ../..
21
+ SRCDIR = ../..
22
22
include ../../Makefile.global
23
23
24
- INCLUDE_OPT = -I.. \
25
- -I../port/$(PORTNAME ) \
26
- -I../../include
24
+ INCLUDE_OPT = -I.. \
25
+ -I../port/$(PORTNAME ) \
26
+ -I../../include
27
27
28
- CFLAGS += $(INCLUDE_OPT ) -Wno-error
28
+ CFLAGS+ = $(INCLUDE_OPT )
29
29
30
- BOOTYACCS = bootstrap_tokens.h bootparse.c
30
+ ifeq ($(CC ) , gcc)
31
+ # Until we figure out how to get rid of the warnings in this directory,
32
+ # we must turn off any -Werror that is in CFLAGS now. These options only
33
+ # exist for the gcc compiler.
34
+ CFLAGS+ = -Wno-error
35
+ endif
36
+
37
+ BOOTYACCS = bootstrap_tokens.h bootparse.c
31
38
32
- OBJS = bootparse.o bootscanner.o bootstrap.o
39
+ OBJS = bootparse.o bootscanner.o bootstrap.o
33
40
34
41
all : SUBSYS.o
35
42
Original file line number Diff line number Diff line change 4
4
# Makefile for parser
5
5
#
6
6
# IDENTIFICATION
7
- # $Header: /cvsroot/pgsql/src/backend/parser/Makefile,v 1.3 1996/11/09 06:18:34 momjian Exp $
7
+ # $Header: /cvsroot/pgsql/src/backend/parser/Makefile,v 1.4 1996/11/14 07:33:30 bryanh Exp $
8
8
#
9
9
# -------------------------------------------------------------------------
10
10
11
- SRCDIR = ../..
11
+ SRCDIR = ../..
12
12
include ../../Makefile.global
13
13
14
- INCLUDE_OPT = -I.. \
15
- -I../port/$(PORTNAME ) \
16
- -I../../include
14
+ INCLUDE_OPT = -I.. \
15
+ -I../port/$(PORTNAME ) \
16
+ -I../../include
17
17
18
- CFLAGS+ =$(INCLUDE_OPT ) -Wno-error
18
+ CFLAGS+ = $(INCLUDE_OPT )
19
19
20
- OBJS = analyze.o catalog_utils.o dbcommands.o gram.o \
21
- keywords.o parser.o parse_query.o scan.o scansup.o sysfunc.o
20
+ ifeq ($(CC ) , gcc)
21
+ # Until we figure out how to get rid of the warnings in this directory,
22
+ # we must turn off any -Werror that is in CFLAGS now. These options only
23
+ # exist for the gcc compiler.
24
+ CFLAGS+ = -Wno-error
25
+ endif
26
+
27
+ OBJS = analyze.o catalog_utils.o dbcommands.o gram.o \
28
+ keywords.o parser.o parse_query.o scan.o scansup.o sysfunc.o
22
29
23
30
all : SUBSYS.o
24
31
Original file line number Diff line number Diff line change 4
4
# Makefile for tcop
5
5
#
6
6
# IDENTIFICATION
7
- # $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.6 1996/11/10 04:09:51 bryanh Exp $
7
+ # $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.7 1996/11/14 07:33:34 bryanh Exp $
8
8
#
9
9
# -------------------------------------------------------------------------
10
10
11
- SRCDIR = ../..
11
+ SRCDIR = ../..
12
12
include ../../Makefile.global
13
13
14
- INCLUDE_OPT = -I.. \
15
- -I../port/$(PORTNAME ) \
16
- -I../../include
14
+ INCLUDE_OPT = -I.. \
15
+ -I../port/$(PORTNAME ) \
16
+ -I../../include
17
17
18
- CFLAGS+ =$(INCLUDE_OPT ) -Wno-error
18
+ CFLAGS+ = $(INCLUDE_OPT )
19
19
20
- OBJS = aclchk.o dest.o fastpath.o postgres.o pquery.o utility.o
20
+ ifeq ($(CC ) , gcc)
21
+ # Until we figure out how to get rid of the warnings in this directory,
22
+ # we must turn off any -Werror that is in CFLAGS now. These options only
23
+ # exist for the gcc compiler.
24
+ CFLAGS+ = -Wno-error
25
+ endif
26
+
27
+ OBJS = aclchk.o dest.o fastpath.o postgres.o pquery.o utility.o
21
28
22
29
all : SUBSYS.o
23
30
You can’t perform that action at this time.
0 commit comments