mosquitto/test/unit/Makefile
2023-05-10 16:20:06 +01:00

23 lines
302 B
Makefile

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