2012-12-10 19:32:48 -06:00
|
|
|
# Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
# file at the top-level directory of this distribution and at
|
|
|
|
# http://rust-lang.org/COPYRIGHT.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
# option. This file may not be copied, modified, or distributed
|
|
|
|
# except according to those terms.
|
|
|
|
|
2011-07-27 19:34:58 -05:00
|
|
|
# Create a way to reformat just some files
|
|
|
|
ifdef PPFILES
|
|
|
|
PP_INPUTS_FILTERED := $(wildcard $(PPFILES))
|
|
|
|
else
|
2011-12-05 18:46:37 -06:00
|
|
|
PP_INPUTS = $(wildcard $(addprefix $(S)src/libcore/,*.rs */*.rs)) \
|
|
|
|
$(wildcard $(addprefix $(S)src/libstd/,*.rs */*.rs)) \
|
2012-02-29 13:46:23 -06:00
|
|
|
$(wildcard $(addprefix $(S)src/rustc/,*.rs */*.rs */*/*.rs)) \
|
2011-12-01 13:31:29 -06:00
|
|
|
$(wildcard $(S)src/test/*/*.rs \
|
2011-07-27 19:34:58 -05:00
|
|
|
$(S)src/test/*/*/*.rs) \
|
2011-12-01 13:31:29 -06:00
|
|
|
$(wildcard $(S)src/fuzzer/*.rs) \
|
2013-01-14 04:55:47 -06:00
|
|
|
$(wildcard $(S)src/rustpkg/*.rs) \
|
2013-02-18 13:18:34 -06:00
|
|
|
$(wildcard $(S)src/rusti/*.rs) \
|
|
|
|
$(wildcard $(S)src/rust/*.rs)
|
2011-06-01 18:55:45 -05:00
|
|
|
|
2011-08-03 00:43:58 -05:00
|
|
|
PP_INPUTS_FILTERED = $(shell echo $(PP_INPUTS) | xargs grep -L \
|
2011-08-31 06:22:58 -05:00
|
|
|
"no-reformat\|xfail-pretty\|xfail-test")
|
2011-07-27 19:34:58 -05:00
|
|
|
endif
|
2011-06-16 17:20:00 -05:00
|
|
|
|
2013-02-21 18:15:01 -06:00
|
|
|
reformat: $(SREQ1$(CFG_BUILD_TRIPLE))
|
2011-06-01 14:01:55 -05:00
|
|
|
@$(call E, reformat [stage1]: $@)
|
2011-06-16 17:20:00 -05:00
|
|
|
for i in $(PP_INPUTS_FILTERED); \
|
2013-03-02 06:25:12 -06:00
|
|
|
do $(call CFG_RUN_TARG_$(CFG_BUILD_TRIPLE),1,$(CFG_BUILD_TRIPLE)/stage1/rustc$(X_$(CFG_BUILD_TRIPLE))) \
|
2011-06-16 17:20:00 -05:00
|
|
|
--pretty normal $$i >$$i.tmp; \
|
2011-08-18 17:46:10 -05:00
|
|
|
if [ $$? -ne 0 ]; \
|
|
|
|
then echo failed to print $$i; rm $$i.tmp; \
|
|
|
|
else if cmp --silent $$i.tmp $$i; \
|
|
|
|
then echo no changes to $$i; rm $$i.tmp; \
|
|
|
|
else echo reformated $$i; mv $$i.tmp $$i; \
|
|
|
|
fi; \
|
|
|
|
fi; \
|
2011-06-01 14:01:55 -05:00
|
|
|
done
|