]> granicus.if.org Git - postgresql/blob - src/backend/utils/adt/Makefile
Another directory that compiles with no errors, and few warnings
[postgresql] / src / backend / utils / adt / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile--
4 #    Makefile for utils/adt
5 #
6 # IDENTIFICATION
7 #    $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.3 1996/11/06 10:30:35 scrappy Exp $
8 #
9 #-------------------------------------------------------------------------
10
11 SRCDIR = ../../..
12 include ../../../Makefile.global
13
14 INCLUDE_OPT = -I../.. \
15               -I../../port/$(PORTNAME) \
16               -I../../../include
17
18 CFLAGS+=$(INCLUDE_OPT)
19
20 OBJS = acl.o arrayfuncs.o arrayutils.o bool.o char.o chunk.o date.o \
21         datum.o dt.o filename.o float.o geo-ops.o geo-selfuncs.o int.o \
22         misc.o nabstime.o name.o not_in.o numutils.o oid.o \
23         oidname.o oidint2.o oidint4.o regexp.o regproc.o selfuncs.o \
24         tid.o varchar.o varlena.o sets.o datetimes.o like.o
25
26 all: SUBSYS.o
27
28 SUBSYS.o: $(OBJS)
29         $(LD) -r -o SUBSYS.o $(OBJS)
30
31 depend dep:
32         $(CC) -MM $(INCLUDE_OPT) *.c >depend
33
34 clean: 
35         rm -f SUBSYS.o $(OBJS)
36
37 ifeq (depend,$(wildcard depend))
38 include depend
39 endif
40