summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authornullableVoidPtr <30564701+nullableVoidPtr@users.noreply.github.com>2018-10-17 11:28:27 +0800
committervoid <30564701+nullableVoidPtr@users.noreply.github.com>2018-11-18 18:29:52 +0800
commit961ab7ccaf4d175189cd42fcddca1336f3d91bad (patch)
treea223139bf9282e5a3636810ae78dccf5095e2100 /Makefile
parent9e5147a9adf9dc0aba908f38637cd0b4da2cbbcc (diff)
Fix makefile and decompile some functions.
Partial memory.c, save.c and bg_palette_buffer.c decompilation, along with some asm/ cleanup.
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0b86d1d..92e1edd 100755
--- a/Makefile
+++ b/Makefile
@@ -103,7 +103,6 @@ $(BUILD_DIR)/sym_%.ld: sym_%.txt
$(C_OBJECTS): $(BUILD_DIR)/%.o: %.c
@$(CPP) $(CPPFLAGS) $< -o $(BUILD_DIR)/$*.i
- echo $(CC1) $(CC1FLAGS) $(BUILD_DIR)/$*.i -o $(BUILD_DIR)/$*.s
@$(CC1) $(CC1FLAGS) $(BUILD_DIR)/$*.i -o $(BUILD_DIR)/$*.s
@printf ".text\n\t.align\t2, 0\n" >> $(BUILD_DIR)/$*.s
$(AS) $(ASFLAGS) -o $@ $(BUILD_DIR)/$*.s