Files
WUIsBack/Makefile
Vichingo455 23ac8a27f0 Bump to 1.11
2025-03-23 12:49:51 +01:00

20 lines
276 B
Makefile

export CI ?= 0
export SIGN ?= 0
export DEBUG ?= 1
all:
ifeq ($(DEBUG),0)
+$(MAKE) clean
endif
+$(MAKE) -C LegacyUpdate
+$(MAKE) -C launcher
+$(MAKE) -C setup
clean:
+$(MAKE) -C LegacyUpdate clean
+$(MAKE) -C launcher clean
+$(MAKE) -C setup clean
.PHONY: all clean