mirror of
https://github.com/postgres/postgres.git
synced 2025-11-21 00:42:43 +03:00
this file in interfaces/ It will all need to be checked in. I used the char *rcsid[] method for cvs ids so it can be strings | grep'd to find version numbers. The new version for the library is 3.0. Run configure from src/ to create the Makefile and it should be good to go. I did minimal documentation references in the README, I'll see if I can get something to Tom Lockhart rather quickly. Vince.
32 lines
924 B
Plaintext
32 lines
924 B
Plaintext
###########################################################################
|
|
# Dependencies for libpq++ C++ library for Postgres SQL
|
|
#
|
|
# Author: Leo Shuster (lsh@lubrizol.com)
|
|
# Updated 18 May 1999 by Vince Vielhaber (vev@michvhf.com)
|
|
###########################################################################
|
|
|
|
pgconnection.o :: pgconnection.cc \
|
|
pgconnection.h \
|
|
$(LIBPQDIR)/libpq-fe.h \
|
|
$(LIBPQDIR)/fe-auth.h
|
|
|
|
pgtransdb.o :: pgtransdb.cc \
|
|
pgtransdb.h \
|
|
pgdatabase.h \
|
|
pgconnection.h \
|
|
$(LIBPQDIR)/libpq-fe.h \
|
|
$(LIBPQDIR)/fe-auth.h
|
|
|
|
pgcursordb.o :: pgcursordb.cc \
|
|
pgcursordb.h \
|
|
pgdatabase.h \
|
|
pgconnection.h \
|
|
$(LIBPQDIR)/libpq-fe.h \
|
|
$(LIBPQDIR)/fe-auth.h
|
|
|
|
pglobject.o :: pglobject.cc \
|
|
pglobject.h \
|
|
pgconnection.h \
|
|
$(LIBPQDIR)/libpq-fe.h \
|
|
$(LIBPQHEADERDIR)/libpq-fs.h
|