Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 41fe2a2

Browse files
committed
Darwin porting patches from Peter Bierman <bierman@apple.com>
1 parent 839de3c commit 41fe2a2

File tree

13 files changed

+568
-25
lines changed

13 files changed

+568
-25
lines changed

src/backend/port/Makefile.in

+13-1
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.27 2000/10/20 21:03:45 petere Exp $
16+
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.28 2000/12/11 00:49:54 tgl Exp $
1717
#
1818
#-------------------------------------------------------------------------
1919

@@ -30,6 +30,10 @@ endif
3030
ifeq ($(PORTNAME), beos)
3131
OBJS += beos/SUBSYS.o
3232
endif
33+
ifeq ($(PORTNAME), darwin)
34+
OBJS += darwin/SUBSYS.o
35+
endif
36+
3337
all: SUBSYS.o
3438

3539
SUBSYS.o: $(OBJS)
@@ -45,11 +49,19 @@ beos/SUBSYS.o: beos.dir
4549
beos.dir:
4650
$(MAKE) -C beos all
4751

52+
darwin/SUBSYS.o: darwin.dir
53+
54+
darwin.dir:
55+
$(MAKE) -C darwin all
56+
4857
tas.o: tas.s
4958
$(CC) $(CFLAGS) -c $<
5059

5160
distclean clean:
5261
rm -f SUBSYS.o $(OBJS)
62+
$(MAKE) -C beos clean
63+
$(MAKE) -C darwin clean
64+
$(MAKE) -C qnx4 clean
5365

5466
depend dep:
5567
$(CC) -MM $(CFLAGS) *.c >depend

src/backend/port/darwin/Makefile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#-------------------------------------------------------------------------
2+
#
3+
# Makefile--
4+
# Makefile for port/darwin
5+
#
6+
# IDENTIFICATION
7+
# $Header: /cvsroot/pgsql/src/backend/port/darwin/Makefile,v 1.1 2000/12/11 00:49:54 tgl Exp $
8+
#
9+
#-------------------------------------------------------------------------
10+
11+
subdir = src/backend/port/darwin
12+
top_builddir = ../../../..
13+
include $(top_builddir)/src/Makefile.global
14+
15+
OBJS = sem.o
16+
17+
all: SUBSYS.o
18+
19+
SUBSYS.o: $(OBJS)
20+
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
21+
22+
depend dep:
23+
$(CC) -MM $(CFLAGS) *.c >depend
24+
25+
clean:
26+
rm -f SUBSYS.o $(OBJS)
27+
28+
ifeq (depend,$(wildcard depend))
29+
include depend
30+
endif

0 commit comments

Comments
 (0)