* contrib/make_b32_all.bat * contrib/make_vc_all.bat * contrib/Makefile - contrib/msql + contrib/hbmsql * contrib/hbmsql/common.mak * contrib/hbmsql/Makefile - contrib/libmisc + contrib/hbmisc - contrib/mysql + contrib/hbmysql - contrib/odbc + contrib/hbodbc - contrib/ole + contrib/hbole - contrib/pgsql + contrib/hbpgsql * contrib/hbpgsql/common.mak * contrib/hbpgsql/Makefile - contrib/samples + contrib/hbclipsm * contrib/hbclipsm/common.mak * contrib/hbclipsm/Makefile
26 lines
369 B
Makefile
26 lines
369 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
C_SOURCES=\
|
|
postgres.c \
|
|
|
|
PRG_SOURCES=\
|
|
tpostgre.prg \
|
|
pgrdd.prg \
|
|
|
|
PRG_HEADERS=\
|
|
postgres.ch \
|
|
|
|
LIBNAME=hbpgsql
|
|
|
|
include $(TOP)$(ROOT)config/lib.cf
|
|
|
|
ifeq ($(HB_COMPILER),mingw32)
|
|
CFLAGS := $(CFLAGS) -I/postgres/include
|
|
else
|
|
CFLAGS := $(CFLAGS) -I/usr/local/pgsql/include -I/usr/local/pgsql/include/libpq -I/usr/include/pgsql
|
|
endif
|