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

Commit41fe2a2

Browse files
committed
Darwin porting patches from Peter Bierman <bierman@apple.com>
1 parent839de3c commit41fe2a2

File tree

13 files changed

+568
-25
lines changed

13 files changed

+568
-25
lines changed

‎src/backend/port/Makefile.in

Lines changed: 13 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.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
distcleanclean:
5261
rm -f SUBSYS.o$(OBJS)
62+
$(MAKE) -C beos clean
63+
$(MAKE) -C darwin clean
64+
$(MAKE) -C qnx4 clean
5365

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

‎src/backend/port/darwin/Makefile

Lines changed: 30 additions & 0 deletions
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+
dependdep:
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)

[8]ページ先頭

©2009-2025 Movatter.jp