mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
31 lines
378 B
Makefile
31 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
|
|
|