0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-29 18:06:44 +01:00
rust/mk/pp.mk

11 lines
342 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)) \
2011-06-14 20:11:07 +02:00
--pretty normal $$i >$$i.tmp && mv $$i.tmp $$i; \
2011-06-01 21:01:55 +02:00
done