Serenity Operating System
1SUBDIRS += \
2 Libraries \
3 AK \
4 DevTools \
5 Servers
6
7SUBDIRS += \
8 Applications \
9 Kernel \
10 MenuApplets \
11 Shell \
12 Userland
13
14SUBDIRS += \
15 Games \
16 Demos
17
18include Makefile.subdir
19
20all: subdirs
21
22.PHONY: test
23UNAME_S := $(shell uname -s)
24ifeq ($(UNAME_S),Darwin)
25test:
26else
27test:
28 $(QUIET) flock AK/Tests -c "$(MAKE) -C AK/Tests clean all && $(MAKE) -C AK/Tests clean"
29endif
30