ladybird/Makefile
Stefano Cristiano b62dbcbf59 Build: Disable compiling tests on macOS host
Tests fail to compile for a mix of reasons, some due to macOS file systems
being by default case-insensitive and some specific to clang.
Both issues are better left to a dedicated set of PR that addressed them.
2019-12-27 02:19:55 +01:00

29 lines
323 B
Makefile

SUBDIRS += \
AK \
Applications \
DevTools \
Kernel \
Libraries \
MenuApplets \
Servers \
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) $(MAKE) -C AK/Tests clean all clean
endif