Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a10ce5 commit 555fe9dCopy full SHA for 555fe9d
src/backend/port/win32/Makefile
@@ -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