mirror of
https://github.com/postgres/postgres.git
synced 2026-06-09 00:32:10 -04:00
Add Win32 Makefile for IPC stuff.
This commit is contained in:
parent
4a10ce5db3
commit
555fe9dda8
1 changed files with 30 additions and 0 deletions
30
src/backend/port/win32/Makefile
Normal file
30
src/backend/port/win32/Makefile
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#-------------------------------------------------------------------------
|
||||
#
|
||||
# Makefile--
|
||||
# Makefile for port/win32
|
||||
#
|
||||
# IDENTIFICATION
|
||||
# $Header: /cvsroot/pgsql/src/backend/port/win32/Makefile,v 1.1 2003/04/24 21:25:34 momjian Exp $
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
subdir = src/backend/port/win32
|
||||
top_builddir = ../../../..
|
||||
include $(top_builddir)/src/Makefile.global
|
||||
|
||||
OBJS = sema.o shmem.o
|
||||
|
||||
all: SUBSYS.o
|
||||
|
||||
SUBSYS.o: $(OBJS)
|
||||
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
|
||||
|
||||
depend dep:
|
||||
$(CC) -MM $(CFLAGS) *.c >depend
|
||||
|
||||
clean:
|
||||
rm -f SUBSYS.o $(OBJS)
|
||||
|
||||
ifeq (depend,$(wildcard depend))
|
||||
include depend
|
||||
endif
|
||||
Loading…
Reference in a new issue