2011-07-27 17:34:58 -07:00
|
|
|
# Create a way to reformat just some files
|
|
|
|
ifdef PPFILES
|
|
|
|
PP_INPUTS_FILTERED := $(wildcard $(PPFILES))
|
|
|
|
else
|
2011-12-05 16:46:37 -08:00
|
|
|
PP_INPUTS = $(wildcard $(addprefix $(S)src/libcore/,*.rs */*.rs)) \
|
|
|
|
$(wildcard $(addprefix $(S)src/libstd/,*.rs */*.rs)) \
|
2012-02-29 11:46:23 -08:00
|
|
|
$(wildcard $(addprefix $(S)src/rustc/,*.rs */*.rs */*/*.rs)) \
|
2011-12-01 11:31:29 -08:00
|
|
|
$(wildcard $(S)src/test/*/*.rs \
|
2011-07-27 17:34:58 -07:00
|
|
|
$(S)src/test/*/*/*.rs) \
|
2011-12-01 11:31:29 -08:00
|
|
|
$(wildcard $(S)src/fuzzer/*.rs) \
|
|
|
|
$(wildcard $(S)src/cargo/*.rs)
|
2011-06-01 16:55:45 -07:00
|
|
|
|
2011-08-02 22:43:58 -07: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-27 17:34:58 -07:00
|
|
|
endif
|
2011-06-16 15:20:00 -07:00
|
|
|
|
2011-09-30 12:24:28 -07:00
|
|
|
reformat: $(SREQ1$(CFG_HOST_TRIPLE))
|
2011-06-01 12:01:55 -07:00
|
|
|
@$(call E, reformat [stage1]: $@)
|
2011-06-16 15:20:00 -07:00
|
|
|
for i in $(PP_INPUTS_FILTERED); \
|
2011-11-21 13:11:40 -08:00
|
|
|
do $(call CFG_RUN_TARG,1,$(CFG_HOST_TRIPLE)/stage1/rustc$(X)) \
|
2011-06-16 15:20:00 -07:00
|
|
|
--pretty normal $$i >$$i.tmp; \
|
2011-08-18 15:46:10 -07: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 12:01:55 -07:00
|
|
|
done
|