2013-10-21 06:13:47 -05:00
|
|
|
# Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 17:32:48 -08:00
|
|
|
# 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 17:34:58 -07:00
|
|
|
# Create a way to reformat just some files
|
|
|
|
ifdef PPFILES
|
|
|
|
PP_INPUTS_FILTERED := $(wildcard $(PPFILES))
|
|
|
|
else
|
2013-05-17 10:45:09 -07:00
|
|
|
PP_INPUTS = $(wildcard $(addprefix $(S)src/libstd/,*.rs */*.rs)) \
|
|
|
|
$(wildcard $(addprefix $(S)src/libextra/,*.rs */*.rs)) \
|
2012-02-29 11:46:23 -08:00
|
|
|
$(wildcard $(addprefix $(S)src/rustc/,*.rs */*.rs */*/*.rs)) \
|
2011-12-01 11:31:29 -08:00
|
|
|
$(wildcard $(S)src/test/*/*.rs \
|
2011-07-27 17:34:58 -07:00
|
|
|
$(S)src/test/*/*/*.rs) \
|
2013-01-14 20:55:47 +10:00
|
|
|
$(wildcard $(S)src/rustpkg/*.rs) \
|
2013-02-18 20:18:34 +01:00
|
|
|
$(wildcard $(S)src/rust/*.rs)
|
2011-06-01 16:55:45 -07:00
|
|
|
|
2011-08-02 22:43:58 -07:00
|
|
|
PP_INPUTS_FILTERED = $(shell echo $(PP_INPUTS) | xargs grep -L \
|
2011-08-31 13:22:58 +02:00
|
|
|
"no-reformat\|xfail-pretty\|xfail-test")
|
2011-07-27 17:34:58 -07:00
|
|
|
endif
|
2011-06-16 15:20:00 -07:00
|
|
|
|
2013-10-21 13:18:21 +04:00
|
|
|
reformat: $(SREQ1$(CFG_BUILD))
|
2011-06-01 12:01:55 -07:00
|
|
|
@$(call E, reformat [stage1]: $@)
|
2011-06-16 15:20:00 -07:00
|
|
|
for i in $(PP_INPUTS_FILTERED); \
|
2013-10-21 13:18:21 +04:00
|
|
|
do $(call CFG_RUN_TARG_$(CFG_BUILD),1,$(CFG_BUILD)/stage1/rustc$(X_$(CFG_BUILD))) \
|
2011-06-16 15:20:00 -07:00
|
|
|
--pretty normal $$i >$$i.tmp; \
|
2011-08-18 15:46:10 -07: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 12:01:55 -07:00
|
|
|
done
|