8000 Re-add Makefile. · postgrespro/postgres_cluster@93fbd46 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 93fbd46

Browse files
committed
Re-add Makefile.
1 parent e740c9b commit 93fbd46

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

src/backend/utils/adt/Makefile

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#-------------------------------------------------------------------------
2+
#
3+
# Makefile--
4+
# Makefile for utils/adt
5+
#
6+
# IDENTIFICATION
7+
# $Header: /cvsroot/pgsql/src/backend/utils/adt/Makefile,v 1.23 1999/07/20 02:44:09 momjian Exp $
8+
#
9+
#-------------------------------------------------------------------------
10+
11+
SRCDIR = ../../..
12+
include ../../../Makefile.global
13+
14+
CFLAGS += -I../..
15+
16+
# seems to be required for some date/time stuff 07/19/1999 bjm
17+
ifeq ($(CPU),alpha)
18+
CFLAGS+= -mieee
19+
endif
20+
21+
ifdef MULTIBYTE
22+
CFLAGS+= $(MBFLAGS)
23+
endif
24+
25+
OBJS = acl.o arrayfuncs.o arrayutils.o bool.o cash.o char.o chunk.o \
26+
date.o datetime.o datum.o dt.o filename.o float.o \
27+
geo_ops.o geo_selfuncs.o int.o int8.o like.o \
28+
misc.o nabstime.o name.o not_in.o numeric.o numutils.o \
29+
oid.o oracle_compat.o \
30+
regexp.o regproc.o ruleutils.o selfuncs.o sets.o \
31+
tid.o timestamp.o varchar.o varlena.o version.o \
32+
network.o mac.o inet_net_ntop.o inet_net_pton.o
33+
34+
all: SUBSYS.o
35+
36+
SUBSYS.o: $(OBJS)
37+
$(LD) -r -o SUBSYS.o $(OBJS)
38+
39+
depend dep:
40+
$(CC) -MM $(CFLAGS) *.c >depend
41+
42+
clean:
43+
rm -f SUBSYS.o $(OBJS)
44+
45+
ifeq (depend,$(wildcard depend))
46+
include depend
47+
endif

0 commit comments

Comments
 (0)
0