diff options
Diffstat (limited to 'src/interfaces/libpq++/examples/Makefile')
-rw-r--r-- | src/interfaces/libpq++/examples/Makefile | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/src/interfaces/libpq++/examples/Makefile b/src/interfaces/libpq++/examples/Makefile deleted file mode 100644 index 5f4fa65f8bd..00000000000 --- a/src/interfaces/libpq++/examples/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -#------------------------------------------------------------------------- -# -# Makefile for libpq++ examples -# -# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group -# Portions Copyright (c) 1994, Regents of the University of California -# -# $Header: /cvsroot/pgsql/src/interfaces/libpq++/examples/Attic/Makefile,v 1.15 2002/07/27 20:10:05 petere Exp $ -# -#------------------------------------------------------------------------- - -subdir = src/interfaces/libpq++/examples -top_builddir = ../../../.. -include $(top_builddir)/src/Makefile.global - -LIBNAME= libpq++ -HEADERDIR= $(includedir) -LIBPQDIR= $(libdir) - -CXXFLAGS= $(CFLAGS) - -CXXFLAGS+= -I$(HEADERDIR) - -LDFLAGS+= -L$(LIBPQDIR) -lpq++ - -PROGS= testlibpq0 testlibpq1 testlibpq2 testlibpq3 \ - testlibpq4 testlibpq5 testlibpq6 testlo - -all: $(PROGS) - -$(PROGS): % : %.cc - $(CXX) $(CXXFLAGS) -o $@ $@.cc $(LDFLAGS) - -clean: - rm -f $(PROGS) - |