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

29 lines
510 B
Makefile

PLUGIN=dns.so
LDFLAGS=-lresolv
DISTFILES=dns.c Makefile.in configure.ac configure config.h.in
include ../Makefile.plugins
ifeq (@DNS_BUILD@,1)
all: ${PLUGIN}
else
all:
@echo "Not building the DNS plugin"
endif
ifeq (@DNS_BUILD@,1)
install: all prepare-install
${INSTALL} ${PLUGIN} ${DESTDIR}
else
install:
@echo "Not installing the DNS plugin"
endif
distdir:
test -d ../${top_distdir}/plugins/dns || mkdir ../${top_distdir}/plugins/dns
${INSTALL} ${DISTFILES} ../${top_distdir}/plugins/dns
# $Id$