2011-07-28 02:34:58 +02:00
|
|
|
# Create a way to reformat just some files
|
|
|
|
ifdef PPFILES
|
|
|
|
PP_INPUTS_FILTERED := $(wildcard $(PPFILES))
|
|
|
|
else
|
|
|
|
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) \
|
|
|
|
$(wildcard $(S)src/fuzzer/*.rs)
|
2011-06-02 01:55:45 +02:00
|
|
|
|
2011-08-03 07:43:58 +02:00
|
|
|
PP_INPUTS_FILTERED = $(shell echo $(PP_INPUTS) | xargs grep -L \
|
2011-08-31 13:22:58 +02:00
|
|
|
"no-reformat\|xfail-pretty\|xfail-test")
|
2011-07-28 02:34:58 +02:00
|
|
|
endif
|
2011-06-17 00:20:00 +02:00
|
|
|
|
2011-09-30 21:24:28 +02:00
|
|
|
reformat: $(SREQ1$(CFG_HOST_TRIPLE))
|
2011-06-01 21:01:55 +02:00
|
|
|
@$(call E, reformat [stage1]: $@)
|
2011-06-17 00:20:00 +02:00
|
|
|
for i in $(PP_INPUTS_FILTERED); \
|
2011-09-30 21:24:28 +02:00
|
|
|
do $(call CFG_RUN_TARG,1,stage1/rustc$(X)) \
|
2011-06-17 00:20:00 +02:00
|
|
|
--pretty normal $$i >$$i.tmp; \
|
2011-08-19 00:46:10 +02:00
|
|
|
if [ $$? -ne 0 ]; \
|
|
|
|
then echo failed to print $$i; rm $$i.tmp; \
|
|
|
|
else if cmp --silent $$i.tmp $$i; \
|
|
|
|
then echo no changes to $$i; rm $$i.tmp; \
|
|
|
|
else echo reformated $$i; mv $$i.tmp $$i; \
|
|
|
|
fi; \
|
|
|
|
fi; \
|
2011-06-01 21:01:55 +02:00
|
|
|
done
|