2019-12-18 23:35:46 +00:00
|
|
|
SUBDIRS += \
|
2020-01-01 19:18:30 +00:00
|
|
|
Libraries \
|
2019-12-25 02:36:04 +00:00
|
|
|
AK \
|
2019-12-18 23:35:46 +00:00
|
|
|
DevTools \
|
2019-12-28 05:57:03 +00:00
|
|
|
Servers
|
|
|
|
|
|
|
|
SUBDIRS += \
|
|
|
|
Applications \
|
|
|
|
Kernel \
|
2019-12-25 02:36:04 +00:00
|
|
|
MenuApplets \
|
2019-12-18 23:35:46 +00:00
|
|
|
Shell \
|
2019-12-25 02:36:04 +00:00
|
|
|
Userland
|
|
|
|
|
|
|
|
SUBDIRS += \
|
2019-12-18 23:35:46 +00:00
|
|
|
Games \
|
2019-12-25 02:36:04 +00:00
|
|
|
Demos
|
2019-12-18 23:35:46 +00:00
|
|
|
|
2020-02-27 10:44:29 +00:00
|
|
|
ifneq (, $(shell which ccache))
|
|
|
|
export PRE_CXX=ccache
|
|
|
|
endif
|
|
|
|
|
2019-12-18 23:35:46 +00:00
|
|
|
include Makefile.subdir
|
|
|
|
|
2019-12-25 03:27:52 +00:00
|
|
|
all: subdirs
|
|
|
|
|
2019-12-18 23:35:46 +00:00
|
|
|
.PHONY: test
|
2019-12-25 16:26:18 +00:00
|
|
|
UNAME_S := $(shell uname -s)
|
|
|
|
ifeq ($(UNAME_S),Darwin)
|
|
|
|
test:
|
|
|
|
else
|
2019-12-18 23:35:46 +00:00
|
|
|
test:
|
2020-01-01 19:18:30 +00:00
|
|
|
$(QUIET) flock AK/Tests -c "$(MAKE) -C AK/Tests clean all && $(MAKE) -C AK/Tests clean"
|
2019-12-25 16:26:18 +00:00
|
|
|
endif
|
|
|
|
|