mosquitto/test/Makefile
Roger A. Light d6c7923d16 Add make check and document testing procedure.
Also support test target in cmake.
2019-04-26 16:25:35 +01:00

25 lines
330 B
Makefile

include ../config.mk
.PHONY: all check test ptest clean
all :
check : test
test : utest
$(MAKE) -C broker test
$(MAKE) -C lib test
ptest : utest
$(MAKE) -C broker ptest
$(MAKE) -C lib ptest
utest :
$(MAKE) -C unit test
reallyclean : clean
clean :
$(MAKE) -C lib clean
$(MAKE) -C broker clean
$(MAKE) -C unit clean