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/whois/Makefile.in

30 lines
585 B
Makefile

PLUGIN=whois.so
MANPAGE=echoping_whois.1
DISTFILES=whois.c Makefile.in configure.ac configure config.h.in ${MANPAGE}
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}
${INSTALL} ${MANPAGE} ${MANDIR}/man1
else
install:
@echo "Not installing the whois plugin"
endif
distdir:
test -d ../${top_distdir}/plugins/whois || mkdir ../${top_distdir}/plugins/whois
${INSTALL} ${DISTFILES} ../${top_distdir}/plugins/whois
# $Id$