mosquitto/plugins/examples/Makefile

40 lines
844 B
Makefile
Raw Normal View History

DIRS= \
add-properties \
auth-by-ip \
client-lifetime-stats \
client-properties \
connection-state \
2021-03-25 16:16:39 +01:00
delayed-auth \
force-retain \
message-timestamp \
payload-modification \
payload-size-stats \
2022-02-28 23:46:39 +01:00
plugin-event-stats \
2021-09-15 11:54:09 +02:00
print-ip-on-publish \
topic-modification \
wildcard-temp
.PHONY : all binary check clean reallyclean test install uninstall
all :
set -e; for d in ${DIRS}; do $(MAKE) -C $${d}; done
binary :
set -e; for d in ${DIRS}; do $(MAKE) -C $${d} $@; done
clean :
set -e; for d in ${DIRS}; do $(MAKE) -C $${d} $@; done
reallyclean :
set -e; for d in ${DIRS}; do $(MAKE) -C $${d} $@; done
check : test
test :
set -e; for d in ${DIRS}; do $(MAKE) -C $${d} $@; done
install :
set -e; for d in ${DIRS}; do $(MAKE) -C $${d} $@; done
uninstall :
set -e; for d in ${DIRS}; do $(MAKE) -C $${d} $@; done