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

Commit 555fe9d

Browse files
committed
Add Win32 Makefile for IPC stuff.
1 parent 4a10ce5 commit 555fe9d

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

src/backend/port/win32/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/win32
5+
#
6+
# IDENTIFICATION
7+
# $Header: /cvsroot/pgsql/src/backend/port/win32/Makefile,v 1.1 2003/04/24 21:25:34 momjian Exp $
8+
#
9+
#-------------------------------------------------------------------------
10+
11+
subdir = src/backend/port/win32
12+
top_builddir = ../../../..
13+
include $(top_builddir)/src/Makefile.global
14+
15+
OBJS = sema.o shmem.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)