summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorProjectRevoTPP <projectrevotpp@hotmail.com>2020-04-18 13:51:39 -0400
committerProjectRevoTPP <projectrevotpp@hotmail.com>2020-04-18 13:51:39 -0400
commit5f1318919376ec679f5300257b41b28dc68e6f4f (patch)
treee5aad3aeb9356023d4161a20fdf7f793f1e2c534 /Makefile
parent79400db47a44201382e0b7bd2be3150e5d47687c (diff)
update mwasmarm_patcher to get rid of libssl dependency.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0b43fef2..3a21944c 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ O_FILES := $(foreach file,$(C_FILES),$(BUILD_DIR)/$(file:.c=.o)) \
################### Universal Dependencies ###################
# Make tools if out of date
-DUMMY != make -s -C tools >&2 || echo FAIL
+DUMMY != make -s -C tools/mwasmarm_patcher >&2 || echo FAIL
ifeq ($(DUMMY),FAIL)
$(error Failed to build tools)
endif
@@ -96,7 +96,7 @@ $(BUILD_DIR)/$(LD_SCRIPT): $(LD_SCRIPT)
$(CPP) $(VERSION_CFLAGS) -MMD -MP -MT $@ -MF $@.d -I include/ -I . -DBUILD_DIR=$(BUILD_DIR) -o $@ $<
$(ELF): $(O_FILES) $(BUILD_DIR)/$(LD_SCRIPT)
- $(LD) $(BUILD_DIR)/$(LD_SCRIPT) -o $(ELF) $(O_FILES) -nodead -w off
+ $(LD) $(BUILD_DIR)/$(LD_SCRIPT) -o $(ELF) $(O_FILES) -nodead -w off -interworking
$(ROM): $(ELF)
$(OBJCOPY) -O binary $< $@