rust/mk/pp.mk

13 lines
439 B
Makefile
Raw Normal View History

2011-06-02 07:55:45 +08:00
PP_INPUTS := $(wildcard $(addprefix $(S)src/lib/,*.rs */*.rs)) \
2011-06-16 00:53:30 +08:00
$(wildcard $(addprefix $(S)src/comp/,*.rs */*.rs */*/*.rs)) \
$(wildcard $(S)src/test/*/*.rs \
$(S)src/test/*/*/*.rs)
2011-06-02 07:55:45 +08:00
2011-06-02 03:01:55 +08:00
reformat: $(SREQ1)
@$(call E, reformat [stage1]: $@)
2011-06-02 07:55:45 +08:00
for i in $(PP_INPUTS); \
2011-06-02 03:01:55 +08:00
do $(call CFG_RUN_TARG,stage1, stage1/rustc$(X)) \
2011-06-15 02:11:07 +08:00
--pretty normal $$i >$$i.tmp && mv $$i.tmp $$i; \
2011-06-02 03:01:55 +08:00
done