rust/mk/pp.mk

11 lines
335 B
Makefile
Raw Normal View History

2011-06-02 01:55:45 +02:00
PP_INPUTS := $(wildcard $(addprefix $(S)src/lib/,*.rs */*.rs)) \
$(wildcard $(addprefix $(S)src/comp/,*.rs */*.rs */*/*.rs))
2011-06-01 21:01:55 +02:00
reformat: $(SREQ1)
@$(call E, reformat [stage1]: $@)
2011-06-02 01:55:45 +02:00
for i in $(PP_INPUTS); \
2011-06-01 21:01:55 +02:00
do $(call CFG_RUN_TARG,stage1, stage1/rustc$(X)) \
--pretty $$i >$$i.tmp && mv $$i.tmp $$i; \
done