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

20 lines
268 B
Makefile

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