Break up make tidy even more

This commit is contained in:
Brian Anderson 2012-04-11 18:17:42 -07:00
parent 6e3c141bee
commit 516b90e646
1 changed files with 8 additions and 4 deletions

View File

@ -2,9 +2,10 @@
# Testing variables # Testing variables
###################################################################### ######################################################################
ALL_TEST_INPUTS = $(wildcard $(S)src/test/*/*.rs \ SOME_TEST_INPUTS = $(wildcard $(S)src/test/*/*.rs)
$(S)src/test/*/*/*.rs \
$(S)src/test/*/*.rc) SOME_MOAR_TEST_INPUTS = $(wildcard $(S)src/test/*/*/*.rs \
$(S)src/test/*/*.rc)
RPASS_RC := $(wildcard $(S)src/test/run-pass/*.rc) RPASS_RC := $(wildcard $(S)src/test/run-pass/*.rc)
RPASS_RS := $(wildcard $(S)src/test/run-pass/*.rs) RPASS_RS := $(wildcard $(S)src/test/run-pass/*.rs)
@ -143,7 +144,10 @@ tidy:
$(RUSTDOC_INPUTS) \ $(RUSTDOC_INPUTS) \
| xargs -n 10 python $(S)src/etc/tidy.py | xargs -n 10 python $(S)src/etc/tidy.py
$(Q)echo \ $(Q)echo \
$(ALL_TEST_INPUTS) \ $(SOME_TEST_INPUTS) \
| xargs -n 10 python $(S)src/etc/tidy.py
$(Q)echo \
$(SOME_MOAR_TEST_INPUTS) \
| xargs -n 10 python $(S)src/etc/tidy.py | xargs -n 10 python $(S)src/etc/tidy.py
$(Q)echo \ $(Q)echo \
$(ALL_CS) \ $(ALL_CS) \