rust/mk/pp.mk

18 lines
627 B
Makefile
Raw Normal View History

2011-06-01 18:55:45 -05:00
PP_INPUTS := $(wildcard $(addprefix $(S)src/lib/,*.rs */*.rs)) \
2011-06-15 11:53:30 -05:00
$(wildcard $(addprefix $(S)src/comp/,*.rs */*.rs */*/*.rs)) \
$(wildcard $(S)src/test/*/*.rs \
$(S)src/test/*/*/*.rs)
2011-06-01 18:55:45 -05:00
PP_INPUTS_FILTERED = $(shell echo $(PP_INPUTS) | xargs grep -L no-reformat)
2011-06-01 14:01:55 -05:00
reformat: $(SREQ1)
@$(call E, reformat [stage1]: $@)
for i in $(PP_INPUTS_FILTERED); \
2011-06-01 14:01:55 -05:00
do $(call CFG_RUN_TARG,stage1, stage1/rustc$(X)) \
--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 14:01:55 -05:00
done