build: add support for building tools targeting host machine
This commit is contained in:
13
tools/Makefile
Normal file
13
tools/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user