mosquitto/test/Makefile

21 lines
267 B
Makefile
Raw Normal View History

2014-05-07 22:27:00 +00:00
include ../config.mk
2018-08-02 08:50:25 +00:00
.PHONY: all test ptest clean
2014-05-07 22:27:00 +00:00
2018-08-02 08:50:25 +00:00
all :
2014-05-07 22:27:00 +00:00
test : utest
2014-05-07 22:27:00 +00:00
$(MAKE) -C broker test
$(MAKE) -C lib test
ptest : utest
$(MAKE) -C broker ptest
$(MAKE) -C lib ptest
utest :
2019-02-27 09:22:00 +00:00
$(MAKE) -C unit test
2014-05-07 22:27:00 +00:00
clean :
$(MAKE) -C lib clean
$(MAKE) -C broker clean