echoping/SRC/plugins/random/Makefile.in

27 lines
477 B
Makefile
Raw Normal View History

PLUGIN=random.so
include ../Makefile.plugins
ifeq (@RANDOM_BUILD@,1)
all: ${PLUGIN}
else
all:
@echo "Not building the random plugin"
endif
ifeq (@RANDOM_BUILD@,1)
install: all prepare-install
${INSTALL} ${PLUGIN} ${DESTDIR}
else
2004-05-24 20:47:28 +00:00
install:
@echo "Not installing the random plugin"
endif
distdir:
test -d ../${top_distdir}/plugins/random || mkdir ../${top_distdir}/plugins/random
cp random.c Makefile.in configure.ac configure ../${top_distdir}/plugins/random
# $Id$