echoping/SRC/plugins/whois/Makefile.in

23 lines
296 B
Makefile
Raw Normal View History

PLUGIN=whois.so
include ../Makefile.plugins
ifeq (@WHOIS_BUILD@,1)
all: ${PLUGIN}
else
all:
@echo "Not building the whois plugin"
endif
ifeq (@WHOIS_BUILD@,1)
install: all prepare-install
${INSTALL} ${PLUGIN} ${DESTDIR}
else
2004-05-24 20:47:28 +00:00
install:
@echo "Not installing the whois plugin"
endif
# $Id$