]> granicus.if.org Git - postgresql/blob - src/backend/utils/error/Makefile
Hi,
[postgresql] / src / backend / utils / error / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile--
4 #    Makefile for utils/error
5 #
6 # IDENTIFICATION
7 #    $Header: /cvsroot/pgsql/src/backend/utils/error/Makefile,v 1.5 1998/04/06 00:26:45 momjian Exp $
8 #
9 #-------------------------------------------------------------------------
10
11 SRCDIR = ../../..
12 include ../../../Makefile.global
13
14 CFLAGS += -I../..
15
16 OBJS = assert.o elog.o exc.o excabort.o excid.o format.o
17
18 all: SUBSYS.o
19
20 SUBSYS.o: $(OBJS)
21         $(LD) -r -o 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