mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-05-03 07:39:40 +02:00
23 lines
302 B
Makefile
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 $@
|