mosquitto/test/Makefile

25 lines
330 B
Makefile
Raw Normal View History

2014-05-07 22:27:00 +00:00
include ../config.mk
.PHONY: all check 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
check : test
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
2019-04-17 16:30:09 +00:00
reallyclean : clean
2014-05-07 22:27:00 +00:00
clean :
$(MAKE) -C lib clean
$(MAKE) -C broker clean
2019-04-10 07:40:55 +00:00
$(MAKE) -C unit clean