]> granicus.if.org Git - postgresql/blob - src/backend/utils/init/Makefile
Major cleanout of PORTNAME variables from Makefiles...bound to screw up
[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.6 1997/12/20 00:29:06 scrappy Exp $
8 #
9 #-------------------------------------------------------------------------
10
11 SRCDIR = ../../..
12 include ../../../Makefile.global
13
14 INCLUDE_OPT = -I../.. 
15
16 CFLAGS += $(INCLUDE_OPT)
17
18 OBJS = enbl.o findbe.o globals.o miscinit.o postinit.o
19
20 all: SUBSYS.o
21
22 SUBSYS.o: $(OBJS)
23         $(LD) -r -o SUBSYS.o $(OBJS)
24
25 depend dep:
26         $(CC) -MM $(INCLUDE_OPT) *.c >depend
27
28 clean: 
29         rm -f SUBSYS.o $(OBJS)
30
31 ifeq (depend,$(wildcard depend))
32 include depend
33 endif
34