ladybird/Makefile
joshua stein b916aa3b5a Build: go back to ordering SUBDIRS by their usefulness
The dependency tracking still doesn't need any specific ordering to
build, but it's better to build DevTools and Libraries first so it
doesn't try to build two Applications that each need to wait for
libraries to be built, wasting a make child sitting around trying to
acquire the lock on the library directory.
2019-12-28 21:09:33 +01:00

31 lines
350 B
Makefile

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