From f4cfb669ef43bb5527054fe15527a042714ca791 Mon Sep 17 00:00:00 2001 From: David Benepe Date: Mon, 6 Sep 2021 19:06:02 -0500 Subject: [PATCH] Fixed makefile issue --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b0ad124f..50ea6b79 100755 --- a/Makefile +++ b/Makefile @@ -135,7 +135,7 @@ COMPRESS = $(TOOLS_DIR)/dkr_decompressor -c LIB_DIRS := lib/ ASM_DIRS := asm/ asm/boot/ asm/assets/ lib/asm/ -SRC_DIRS := $(sort $(dir $(wildcard src/* src/**/*))) $(sort $(dir $(wildcard lib/src/* lib/src/**/*))) +SRC_DIRS := $(sort $(dir $(wildcard src/* src/**/*))) $(sort $(dir $(wildcard lib/src/* lib/src/**/* lib/src/**/**/*))) GLOBAL_ASM_C_FILES != grep -rl 'GLOBAL_ASM(' $(SRC_DIRS) GLOBAL_ASM_O_FILES = $(foreach file,$(GLOBAL_ASM_C_FILES),$(BUILD_DIR)/$(file:.c=.o))