mosquitto/test/apps/Makefile
Roger A. Light c8e313aac0 Fix build
This is for the case where command line overrides are set.
2023-09-19 22:48:24 +01:00

28 lines
382 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
$(MAKE) -C ctrl clean
$(MAKE) -C passwd clean