|
|
|
@ -1,19 +1,23 @@ |
|
|
|
|
#
|
|
|
|
|
# $Header: /cvsroot/pgsql/contrib/pg_controldata/Attic/Makefile,v 1.3 2001/03/13 01:17:40 tgl Exp $
|
|
|
|
|
# $Header: /cvsroot/pgsql/contrib/pg_controldata/Attic/Makefile,v 1.4 2001/04/03 19:06:19 tgl Exp $
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
subdir = contrib/pg_controldata
|
|
|
|
|
top_builddir = ../..
|
|
|
|
|
include $(top_builddir)/src/Makefile.global |
|
|
|
|
|
|
|
|
|
OBJS = pg_controldata.o pg_crc.o
|
|
|
|
|
OBJS = pg_controldata.o pg_crc.o $(SNPRINTF)
|
|
|
|
|
|
|
|
|
|
all: pg_controldata |
|
|
|
|
|
|
|
|
|
pg_controldata: $(OBJS) |
|
|
|
|
$(CC) $(CFLAGS) $(OBJS) $(LDFLAGS) $(LIBS) -o $@
|
|
|
|
|
|
|
|
|
|
pg_crc.c: $(top_builddir)/src/backend/utils/hash/pg_crc.c |
|
|
|
|
pg_crc.c: $(top_srcdir)/src/backend/utils/hash/pg_crc.c |
|
|
|
|
rm -f $@ && $(LN_S) $< .
|
|
|
|
|
|
|
|
|
|
# this only gets done if configure finds system doesn't have snprintf()
|
|
|
|
|
snprintf.c: $(top_srcdir)/src/backend/port/snprintf.c |
|
|
|
|
rm -f $@ && $(LN_S) $< .
|
|
|
|
|
|
|
|
|
|
install: all installdirs |
|
|
|
@ -27,7 +31,7 @@ uninstall: |
|
|
|
|
rm -f $(bindir)/pg_controldata$(X) $(docdir)/contrib/README.pg_controldata
|
|
|
|
|
|
|
|
|
|
clean distclean maintainer-clean: |
|
|
|
|
rm -f pg_controldata$(X) $(OBJS) pg_crc.c
|
|
|
|
|
rm -f pg_controldata$(X) $(OBJS) pg_crc.c snprintf.c
|
|
|
|
|
|
|
|
|
|
depend dep: |
|
|
|
|
$(CC) -MM -MG $(CFLAGS) *.c > depend
|
|
|
|
|