2011-06-02 01:55:45 +02:00
|
|
|
|
2011-06-25 21:23:27 +02:00
|
|
|
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)
|
2011-06-02 01:55:45 +02:00
|
|
|
|
2011-06-17 00:20:00 +02:00
|
|
|
PP_INPUTS_FILTERED = $(shell echo $(PP_INPUTS) | xargs grep -L no-reformat)
|
|
|
|
|
2011-06-01 21:01:55 +02:00
|
|
|
reformat: $(SREQ1)
|
|
|
|
@$(call E, reformat [stage1]: $@)
|
2011-06-17 00:20:00 +02:00
|
|
|
for i in $(PP_INPUTS_FILTERED); \
|
2011-07-21 21:10:43 +02:00
|
|
|
do $(call CFG_RUN_TARG,stage0,stage1/rustc$(X)) \
|
2011-06-17 00:20:00 +02:00
|
|
|
--pretty normal $$i >$$i.tmp; \
|
|
|
|
if cmp --silent $$i.tmp $$i; \
|
|
|
|
then echo no changes to $$i; rm $$i.tmp; \
|
|
|
|
else mv $$i.tmp $$i; fi \
|
2011-06-01 21:01:55 +02:00
|
|
|
done
|