]> granicus.if.org Git - postgresql/blob - src/backend/utils/error/Makefile
Generated header files parse.h and fmgroids.h are now copied into
[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.8 2000/05/29 05:45:27 tgl Exp $
8 #
9 #-------------------------------------------------------------------------
10
11 SRCDIR = ../../..
12 include ../../../Makefile.global
13
14 OBJS = assert.o elog.o exc.o excabort.o excid.o format.o
15
16 all: SUBSYS.o
17
18 SUBSYS.o: $(OBJS)
19         $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
20
21 depend dep:
22         $(CC) -MM $(CFLAGS) *.c >depend
23
24 clean: 
25         rm -f SUBSYS.o $(OBJS)
26
27 ifeq (depend,$(wildcard depend))
28 include depend
29 endif
30