]> granicus.if.org Git - postgresql/blob - src/backend/postmaster/Makefile
New LDOUT makefile variable for QNX os.
[postgresql] / src / backend / postmaster / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile--
4 #    Makefile for postmaster
5 #
6 # IDENTIFICATION
7 #    $Header: /cvsroot/pgsql/src/backend/postmaster/Makefile,v 1.10 1999/12/13 22:33:19 momjian Exp $
8 #
9 #-------------------------------------------------------------------------
10
11 SRCDIR = ../..
12 include ../../Makefile.global
13
14 CFLAGS += -I..
15
16 OBJS = postmaster.o
17
18 all: SUBSYS.o
19
20 SUBSYS.o: $(OBJS)
21         $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
22
23 depend dep:
24         $(CC) -MM $(CFLAGS) *.c >depend
25
26 clean: 
27         rm -f SUBSYS.o $(OBJS) 
28
29 ifeq (depend,$(wildcard depend))
30 include depend
31 endif
32