mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
debate was from Paul Vixie, who wanted INET to be the name covering both IPV4 and IPV6. The following kit makes the needed changes: Tom Ivar Helbekkmo
44 lines
1022 B
Makefile
44 lines
1022 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for utils/adt
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.19 1998/10/08 00:19:33 momjian Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR = ../../..
|
|
include ../../../Makefile.global
|
|
|
|
CFLAGS += -I../..
|
|
|
|
ifdef MULTIBYTE
|
|
CFLAGS+= $(MBFLAGS)
|
|
endif
|
|
|
|
OBJS = acl.o arrayfuncs.o arrayutils.o bool.o cash.o char.o chunk.o \
|
|
date.o datetime.o datum.o dt.o filename.o float.o \
|
|
geo_ops.o geo_selfuncs.o int.o int8.o like.o \
|
|
misc.o nabstime.o name.o not_in.o numutils.o \
|
|
oid.o oracle_compat.o \
|
|
regexp.o regproc.o ruleutils.o selfuncs.o sets.o \
|
|
tid.o timestamp.o varchar.o varlena.o version.o \
|
|
inet.o mac.o inet_net_ntop.o inet_net_pton.o
|
|
|
|
all: SUBSYS.o
|
|
|
|
SUBSYS.o: $(OBJS)
|
|
$(LD) -r -o SUBSYS.o $(OBJS)
|
|
|
|
depend dep:
|
|
$(CC) -MM $(CFLAGS) *.c >depend
|
|
|
|
clean:
|
|
rm -f SUBSYS.o $(OBJS)
|
|
|
|
ifeq (depend,$(wildcard depend))
|
|
include depend
|
|
endif
|
|
|