serenity/Makefile
2020-02-27 11:44:29 +01:00

35 lines
441 B
Makefile

SUBDIRS += \
Libraries \
AK \
DevTools \
Servers
SUBDIRS += \
Applications \
Kernel \
MenuApplets \
Shell \
Userland
SUBDIRS += \
Games \
Demos
ifneq (, $(shell which ccache))
export PRE_CXX=ccache
endif
include Makefile.subdir
all: subdirs
.PHONY: test
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
test:
else
test:
$(QUIET) flock AK/Tests -c "$(MAKE) -C AK/Tests clean all && $(MAKE) -C AK/Tests clean"
endif