mirror of
https://github.com/postgres/postgres.git
synced 2025-05-31 00:01:57 -04:00
Makefile.global. End result, if all goes well, should allow for much easier porting, since there will no longer be a concept of a "port". Most, if not everything, *should* be determined by configure, or by the compiler itself. Still work to be done though :)
44 lines
1023 B
Makefile
44 lines
1023 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for utils/adt
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.9 1997/12/19 02:07:55 scrappy Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
SRCDIR = ../../..
|
|
include ../../../Makefile.global
|
|
|
|
INCLUDE_OPT = -I../..
|
|
|
|
ifdef PORTNAME
|
|
INCLUDE+=-I../../port/$(PORTNAME)
|
|
endif
|
|
|
|
CFLAGS+=$(INCLUDE_OPT)
|
|
|
|
OBJS = acl.o arrayfuncs.o arrayutils.o bool.o cash.o char.o chunk.o date.o \
|
|
datum.o dt.o filename.o float.o geo_ops.o geo_selfuncs.o int.o \
|
|
misc.o nabstime.o name.o not_in.o numutils.o oid.o \
|
|
oidname.o oidint2.o oidint4.o oracle_compat.o regexp.o regproc.o \
|
|
selfuncs.o \
|
|
tid.o varchar.o varlena.o sets.o datetime.o like.o timestamp.o
|
|
|
|
all: SUBSYS.o
|
|
|
|
SUBSYS.o: $(OBJS)
|
|
$(LD) -r -o SUBSYS.o $(OBJS)
|
|
|
|
depend dep:
|
|
$(CC) -MM $(INCLUDE_OPT) *.c >depend
|
|
|
|
clean:
|
|
rm -f SUBSYS.o $(OBJS)
|
|
|
|
ifeq (depend,$(wildcard depend))
|
|
include depend
|
|
endif
|
|
|