1
0
mirror of https://github.com/postgres/postgres.git synced 2026-01-05 23:38:41 +03:00

Fix bogus makefiles ... these didn't build on platforms that are sticky

about being given accurate references to referenced libraries ...
This commit is contained in:
Tom Lane
2000-12-04 01:32:19 +00:00
parent 74b8fe1717
commit d9466046c0
4 changed files with 39 additions and 12 deletions

View File

@@ -1,14 +1,15 @@
#
# $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/Makefile,v 1.8 2000/11/30 20:36:09 petere Exp $
# $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/Makefile,v 1.9 2000/12/04 01:32:18 tgl Exp $
#
subdir = contrib/pg_dumplo
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
OBJS = main.o lo_export.o lo_import.o utils.o
override CPPFLAGS += -I$(libpq_srcdir)
OBJS = main.o lo_export.o lo_import.o utils.o
all: pg_dumplo
pg_dumplo: $(OBJS) $(libpq_builddir)/libpq.a
@@ -25,7 +26,7 @@ uninstall:
rm -f $(bindir)/pg_dumplo$(X) $(docdir)/contrib/README.pg_dumplo
clean distclean maintainer-clean:
rm -f pg_dumplo $(OBJS)
rm -f pg_dumplo$(X) $(OBJS)
depend dep:
$(CC) -MM -MG $(CFLAGS) *.c > depend