]> granicus.if.org Git - postgresql/blob - src/backend/utils/error/Makefile
Another pgindent run with updated typedefs.
[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.10 2002/08/10 20:29:18 momjian 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
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