summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnghelo Carvajal <angheloalf95@gmail.com>2023-08-16 19:29:49 -0400
committerGitHub <noreply@github.com>2023-08-16 16:29:49 -0700
commit647f6deed428e00bfa80c8886a5c88740ef6fa74 (patch)
treebd7bb1838848b89b77cc8243ed257cdd9fe8dc40 /Makefile
parentfca5307ea908606c40c051d4c366ed8dcf077258 (diff)
Bootstrap actors (#56)
* rename actors to their profile names. still need to rename thir files * name the files of almost half the actors * name the files of the rest of the actors * name functions used in actor profiles * create c files * fix building * fix fake symbol in ac_ball * make headers * bootstrap most of the stuff * rename ovl_player_actor to player_actor * name all the actor enums * actor and object enums * flags * restore comment * avoid building asm/lib because it can be problematic for FULL_DISASM * format
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 031e008..0851aec 100644
--- a/Makefile
+++ b/Makefile
@@ -181,7 +181,7 @@ endif
$(shell mkdir -p asm/$(VERSION) bin linker_scripts/$(VERSION)/auto)
SRC_DIRS := $(shell find src -type d)
-ASM_DIRS := $(shell find asm/$(VERSION) -type d -not -path "asm/$(VERSION)/nonmatchings/*")
+ASM_DIRS := $(shell find asm/$(VERSION) -type d -not -path "asm/$(VERSION)/nonmatchings/*" -not -path "asm/$(VERSION)/lib/*")
BIN_DIRS := $(shell find bin -type d)
C_FILES := $(foreach dir,$(SRC_DIRS),$(wildcard $(dir)/*.c))