mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
11 lines
342 B
Makefile
11 lines
342 B
Makefile
|
|
PP_INPUTS := $(wildcard $(addprefix $(S)src/lib/,*.rs */*.rs)) \
|
|
$(wildcard $(addprefix $(S)src/comp/,*.rs */*.rs */*/*.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
|