~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to src/backend/utils/adt/Makefile

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Makefile for utils/adt
 
3
#
 
4
# $PostgreSQL: pgsql/src/backend/utils/adt/Makefile,v 1.57 2004-04-01 21:28:45 tgl Exp $
 
5
#
 
6
 
 
7
subdir = src/backend/utils/adt
 
8
top_builddir = ../../../..
 
9
include $(top_builddir)/src/Makefile.global
 
10
 
 
11
# seems to be required for some date/time stuff 1999/07/22 bjm
 
12
ifeq "$(findstring alpha,$(host_cpu))" "alpha"
 
13
ifeq "$(GCC)" "yes"
 
14
override CFLAGS+= -mieee
 
15
endif
 
16
endif
 
17
 
 
18
OBJS = acl.o arrayfuncs.o array_userfuncs.o arrayutils.o bool.o \
 
19
        cash.o char.o date.o datetime.o datum.o float.o format_type.o \
 
20
        geo_ops.o geo_selfuncs.o int.o int8.o like.o lockfuncs.o \
 
21
        misc.o nabstime.o name.o not_in.o numeric.o numutils.o \
 
22
        oid.o oracle_compat.o pseudotypes.o rowtypes.o \
 
23
        regexp.o regproc.o ruleutils.o selfuncs.o \
 
24
        tid.o timestamp.o varbit.o varchar.o varlena.o version.o xid.o \
 
25
        network.o mac.o inet_net_ntop.o inet_net_pton.o \
 
26
        ri_triggers.o pg_lzcompress.o pg_locale.o formatting.o \
 
27
        ascii.o quote.o pgstatfuncs.o encode.o
 
28
 
 
29
like.o: like.c like_match.c
 
30
 
 
31
all: SUBSYS.o
 
32
 
 
33
SUBSYS.o: $(OBJS)
 
34
        $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
 
35
 
 
36
depend dep:
 
37
        $(CC) -MM $(CFLAGS) *.c >depend
 
38
 
 
39
clean: 
 
40
        rm -f SUBSYS.o $(OBJS)
 
41
 
 
42
ifeq (depend,$(wildcard depend))
 
43
include depend
 
44
endif