2004-04-09 13:05:16 +00:00
|
|
|
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:
|
2004-04-09 13:05:16 +00:00
|
|
|
@echo "Not installing the random plugin"
|
|
|
|
endif
|
|
|
|
|
2004-05-25 13:55:30 +00:00
|
|
|
distdir:
|
|
|
|
test -d ../${top_distdir}/plugins/random || mkdir ../${top_distdir}/plugins/random
|
|
|
|
cp random.c Makefile.in configure.ac configure ../${top_distdir}/plugins/random
|
|
|
|
|
2004-04-09 13:05:16 +00:00
|
|
|
# $Id$
|
|
|
|
|
|
|
|
|