mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
805e431a38
source directory. This involves mostly makefiles using $(srcdir) when they might have used ".". (Regression tests don't work with this, yet.) Sort out usage of CPPFLAGS, CFLAGS (and CXXFLAGS). Add "override" keyword in most places, to preserve necessary flags even when the user overrode the flags.
36 lines
820 B
Makefile
36 lines
820 B
Makefile
#
|
|
# $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/Makefile,v 1.7 2000/10/20 21:03:25 petere 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)
|
|
|
|
all: pg_dumplo
|
|
|
|
pg_dumplo: $(OBJS) $(libpq_builddir)/libpq.a
|
|
$(CC) -o $@ $(OBJS) $(libpq) $(CFLAGS) $(LDFLAGS)
|
|
|
|
install: all installdirs
|
|
$(INSTALL_PROGRAM) pg_dumplo$(X) $(bindir)
|
|
$(INSTALL_DATA) README.pg_dumplo $(docdir)/contrib
|
|
|
|
installdirs:
|
|
$(mkinstalldirs) $(bindir) $(docdir)/contrib
|
|
|
|
uninstall:
|
|
rm -f $(bindir)/pg_dumplo$(X) $(docdir)/contrib/README.pg_dumplo
|
|
|
|
clean distclean maintainer-clean:
|
|
rm -f pg_dumplo $(OBJS)
|
|
|
|
depend dep:
|
|
$(CC) -MM -MG $(CFLAGS) *.c > depend
|
|
|
|
ifeq (depend,$(wildcard depend))
|
|
include depend
|
|
endif
|