mosquitto/test/apps/Makefile
Norbert Heusser 170cd85cec Add target test-compile to all Makefile to allow tests in plugin folders
Signed-off-by: Norbert Heusser <norbert.heusser@cedalo.com>
2022-12-09 18:03:54 +00:00

26 lines
334 B
Makefile

R=../..
include ${R}/config.mk
.PHONY: all check test ptest clean
.NOTPARALLEL:
all :
check : test
test-compile:
test :
$(MAKE) -C db_dump test
$(MAKE) -C ctrl test
$(MAKE) -C passwd test
ptest :
$(MAKE) -C db_dump ptest
$(MAKE) -C ctrl ptest
$(MAKE) -C passwd ptest
reallyclean : clean
clean :
$(MAKE) -C db_dump clean