We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af9272f commit d569a71Copy full SHA for d569a71
mk/pp.mk
@@ -1,7 +1,10 @@
1
+
2
+PP_INPUTS := $(wildcard $(addprefix $(S)src/lib/,*.rs */*.rs)) \
3
+ $(wildcard $(addprefix $(S)src/comp/,*.rs */*.rs */*/*.rs))
4
5
reformat: $(SREQ1)
6
@$(call E, reformat [stage1]: $@)
- for i in $(wildcard $(addprefix $(S)src/comp/, \
- *.rs */*.rs */*/*.rs)); \
7
+ for i in $(PP_INPUTS); \
8
do $(call CFG_RUN_TARG,stage1, stage1/rustc$(X)) \
9
--pretty $$i >$$i.tmp && mv $$i.tmp $$i; \
10
done
0 commit comments