You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
echoping/SRC/plugins/postgresql/Makefile.in

24 lines
308 B
Makefile

PLUGIN=postgresql.so
include ../Makefile.plugins
ifeq (@PGSQL_BUILD@,1)
all: ${PLUGIN}
else
all:
@echo "Not building the PostgreSQL plugin"
endif
ifeq (@PGSQL_BUILD@,1)
install: all prepare-install
${INSTALL} ${PLUGIN} ${DESTDIR}
else
all:
@echo "Not installing the PostgreSQL plugin"
endif
# $Id$