Build: Enter Libraries before AK, clean tests as separate step

This commit is contained in:
joshua stein 2020-01-01 13:18:30 -06:00 committed by Andreas Kling
parent e7de8af379
commit 31732d163f

View file

@ -1,7 +1,7 @@
SUBDIRS += \
Libraries \
AK \
DevTools \
Libraries \
Servers
SUBDIRS += \
@ -25,6 +25,6 @@ ifeq ($(UNAME_S),Darwin)
test:
else
test:
$(QUIET) flock AK/Tests $(MAKE) -C AK/Tests clean all clean
$(QUIET) flock AK/Tests -c "$(MAKE) -C AK/Tests clean all && $(MAKE) -C AK/Tests clean"
endif