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