mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
30 lines
378 B
Makefile
30 lines
378 B
Makefile
SUBDIRS += \
|
|
Libraries \
|
|
AK \
|
|
DevTools \
|
|
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 -c "$(MAKE) -C AK/Tests clean all && $(MAKE) -C AK/Tests clean"
|
|
endif
|
|
|