]> granicus.if.org Git - postgresql/blob - src/backend/utils/error/Makefile
Preliminary code cleanup in elog(). Split out some code into utility
[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.9 2000/08/31 16:10:48 petere Exp $
8 #
9 #-------------------------------------------------------------------------
10
11 subdir = src/backend/utils/error
12 top_builddir = ../../../..
13 include $(top_builddir)/src/Makefile.global
14
15 OBJS = assert.o elog.o exc.o excabort.o excid.o format.o
16
17 all: SUBSYS.o
18
19 SUBSYS.o: $(OBJS)
20         $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
21
22 depend dep:
23         $(CC) -MM $(CFLAGS) *.c >depend
24
25 clean: 
26         rm -f SUBSYS.o $(OBJS)
27
28 ifeq (depend,$(wildcard depend))
29 include depend
30 endif