2011-07-28 00:34:58 +00: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-01 23:55:45 +00:00
|
|
|
|
2011-08-03 05:43:58 +00:00
|
|
|
PP_INPUTS_FILTERED = $(shell echo $(PP_INPUTS) | xargs grep -L \
|
|
|
|
"no-reformat\|xfail-pretty\|xfail-stage2")
|
2011-07-28 00:34:58 +00:00
|
|
|
endif
|
2011-06-16 22:20:00 +00:00
|
|
|
|
2011-06-01 19:01:55 +00:00
|
|
|
reformat: $(SREQ1)
|
|
|
|
@$(call E, reformat [stage1]: $@)
|
2011-06-16 22:20:00 +00:00
|
|
|
for i in $(PP_INPUTS_FILTERED); \
|
2011-07-27 09:05:54 +00:00
|
|
|
do $(call CFG_RUN_TARG,stage1,stage1/rustc$(X)) \
|
2011-06-16 22:20:00 +00: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 19:01:55 +00:00
|
|
|
done
|