build: add support for building tools targeting host machine

This commit is contained in:
2023-02-07 11:25:33 +00:00
parent 625eac9ca7
commit 2f69bfd4f0
7 changed files with 374 additions and 3 deletions

13
tools/Makefile Normal file
View File

@@ -0,0 +1,13 @@
TOOL_LIST := e64patch
all:
@for prog in $(TOOL_LIST); do \
$(MAKE) -C $$prog; \
done
clean:
@for prog in $(TOOL_LIST); do \
$(MAKE) -C $$prog clean; \
done
.PHONY: all clean