You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mosquitto/test/Makefile

34 lines
536 B
Makefile

R=..
include ${R}/config.mk
.PHONY: all check test test-compile ptest clean
all :
test-compile:
$(MAKE) -C broker test-compile
$(MAKE) -C client test-compile
$(MAKE) -C lib test-compile
$(MAKE) -C unit test-compile
check : test
test : utest
$(MAKE) -C broker test
$(MAKE) -C lib test
$(MAKE) -C client test
ptest : utest
$(MAKE) -C broker ptest
$(MAKE) -C lib ptest
$(MAKE) -C client ptest
utest :
$(MAKE) -C unit test
reallyclean : clean
clean :
$(MAKE) -C lib clean
$(MAKE) -C broker clean
$(MAKE) -C unit clean