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/apps/Makefile

26 lines
334 B
Makefile

R=../..
include ${R}/config.mk
.PHONY: all check test ptest clean
.NOTPARALLEL:
all :
check : test
test-compile:
test :
$(MAKE) -C db_dump test
$(MAKE) -C ctrl test
$(MAKE) -C passwd test
ptest :
$(MAKE) -C db_dump ptest
$(MAKE) -C ctrl ptest
$(MAKE) -C passwd ptest
reallyclean : clean
clean :
$(MAKE) -C db_dump clean