mirror of
https://github.com/joel16/uofw.git
synced 2024-11-23 19:49:58 +00:00
5d3bee7f98
Closes #11
13 lines
218 B
Makefile
13 lines
218 B
Makefile
TARGETS=kprxgen fixup-imports build-exports basic-decompiler
|
|
|
|
all: $(TARGETS)
|
|
|
|
$(TARGETS):
|
|
@$(MAKE) -C $@
|
|
|
|
clean mrproper:
|
|
@$(foreach target, $(TARGETS), $(MAKE) -C $(target) $@;)
|
|
|
|
.PHONY: $(TARGETS) clean mrproper
|
|
|