rust/mk/pp.mk
2011-06-15 10:09:28 -07:00

13 lines
439 B
Makefile

PP_INPUTS := $(wildcard $(addprefix $(S)src/lib/,*.rs */*.rs)) \
$(wildcard $(addprefix $(S)src/comp/,*.rs */*.rs */*/*.rs)) \
$(wildcard $(S)src/test/*/*.rs \
$(S)src/test/*/*/*.rs)
reformat: $(SREQ1)
@$(call E, reformat [stage1]: $@)
for i in $(PP_INPUTS); \
do $(call CFG_RUN_TARG,stage1, stage1/rustc$(X)) \
--pretty normal $$i >$$i.tmp && mv $$i.tmp $$i; \
done