1996-10-27 04:55:05 -05:00
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Makefile--
|
|
|
|
|
# Makefile for utils/init
|
|
|
|
|
#
|
|
|
|
|
# IDENTIFICATION
|
2005-05-02 14:26:54 -04:00
|
|
|
# $PostgreSQL: pgsql/src/backend/utils/init/Makefile,v 1.19 2005/05/02 18:26:53 momjian Exp $
|
1996-10-27 04:55:05 -05:00
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
|
2000-08-31 12:12:35 -04:00
|
|
|
subdir = src/backend/utils/init
|
|
|
|
|
top_builddir = ../../../..
|
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
1996-10-27 04:55:05 -05:00
|
|
|
|
2005-05-02 14:26:54 -04:00
|
|
|
OBJS = flatfiles.o globals.o miscinit.o postinit.o checkfiles.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
|