2
0
This repository has been archived on 2025-11-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

27 lines
378 B
Makefile

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