echoping/SRC/plugins/random/Makefile.in

23 lines
301 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
# $Id$