1996-10-27 04:55:05 -05:00
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Makefile--
|
|
|
|
|
# Makefile for postmaster
|
|
|
|
|
#
|
|
|
|
|
# IDENTIFICATION
|
2001-06-22 15:16:24 -04:00
|
|
|
# $Header: /cvsroot/pgsql/src/backend/postmaster/Makefile,v 1.13 2001/06/22 19:16:22 wieck Exp $
|
1996-10-27 04:55:05 -05:00
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
|
2000-08-31 12:12:35 -04:00
|
|
|
subdir = src/backend/postmaster
|
|
|
|
|
top_builddir = ../../..
|
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
1996-10-27 04:55:05 -05:00
|
|
|
|
2001-06-22 15:16:24 -04:00
|
|
|
OBJS = postmaster.o pgstat.o
|
1996-10-27 04:55:05 -05:00
|
|
|
|
|
|
|
|
all: SUBSYS.o
|
|
|
|
|
|
|
|
|
|
SUBSYS.o: $(OBJS)
|
1999-12-13 17:35:27 -05:00
|
|
|
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
|
1996-10-27 04:55:05 -05:00
|
|
|
|
|
|
|
|
depend dep:
|
1998-04-05 20:32:26 -04:00
|
|
|
$(CC) -MM $(CFLAGS) *.c >depend
|
1996-10-27 04:55:05 -05:00
|
|
|
|
|
|
|
|
clean:
|
|
|
|
|
rm -f SUBSYS.o $(OBJS)
|
|
|
|
|
|
|
|
|
|
ifeq (depend,$(wildcard depend))
|
|
|
|
|
include depend
|
|
|
|
|
endif
|