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