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