uofw/utils/Makefile
Martin Charles 5d3bee7f98 Added more makefiles
Closes #11
2014-05-08 16:40:38 -04:00

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