mirror of
https://framagit.org/bortzmeyer/echoping
synced 2024-11-12 13:10:39 +00:00
23 lines
301 B
Makefile
23 lines
301 B
Makefile
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
|
|
install:
|
|
@echo "Not installing the random plugin"
|
|
endif
|
|
|
|
# $Id$
|
|
|
|
|