postgresql/src/backend/port/Makefile.in

53 lines
1.5 KiB
Makefile
Raw Normal View History

1997-02-05 22:27:04 +01:00
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for the port-specific subsystem of the backend
#
# We have two different modes of operation: 1) put stuff specific to Port X
# in subdirectory X and have that subdirectory's make file make it all, and
# 2) use conditional statements in the present make file to include what's
# necessary for a specific port in our own output. (1) came first, but (2)
# is superior for many things, like when the same thing needs to be done for
# multiple ports and you don't want to duplicate files in multiple
# subdirectories. Much of the stuff done via Method 1 today should probably
# be converted to Method 2.
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/Attic/Makefile.in,v 1.23 2000/05/29 05:44:54 tgl Exp $
1997-02-05 22:27:04 +01:00
#
#-------------------------------------------------------------------------
SRCDIR=../..
1997-02-05 22:27:04 +01:00
include ../../Makefile.global
OBJS = dynloader.o @INET_ATON@ @STRERROR@ @MISSING_RANDOM@ @SRANDOM@
OBJS+= @GETHOSTNAME@ @GETRUSAGE@ @STRCASECMP@ @STRDUP@ @TAS@ @ISINF@
OBJS+= @STRTOL@ @STRTOUL@ @SNPRINTF@
ifeq ($(PORTNAME), qnx4)
OBJS += getrusage.o qnx4/SUBSYS.o
endif
all: SUBSYS.o
1997-02-05 22:27:04 +01:00
SUBSYS.o: $(OBJS)
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
1997-02-05 22:27:04 +01:00
qnx4/SUBSYS.o: qnx4.dir
qnx4.dir:
$(MAKE) -C qnx4 all
2000-05-11 19:46:35 +02:00
tas.o: tas.s
$(CC) $(CFLAGS) -c tas.s
2000-05-11 19:46:35 +02:00
.PHONY: clean dep
1997-02-05 22:27:04 +01:00
distclean clean:
1997-02-28 11:57:47 +01:00
rm -f SUBSYS.o $(OBJS)
1997-02-05 22:27:04 +01:00
depend dep:
$(CC) -MM $(CFLAGS) *.c >depend
1997-02-05 22:27:04 +01:00
ifeq (depend,$(wildcard depend))
include depend
endif