about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-06-10 13:00:38 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-06-25 08:55:15 -0700
commit42b44b21b11ded0a7dbbe196b1c9d338ef33b614 (patch)
tree2c5070c5f43b608603ff978c05fa82e367d8082a
parent7aee5da08db11dc597907bf228c2e716a408fdab (diff)
downloadrust-42b44b21b11ded0a7dbbe196b1c9d338ef33b614.tar.gz
rust-42b44b21b11ded0a7dbbe196b1c9d338ef33b614.zip
Rename all files with the 'rc' extension
-rw-r--r--Makefile.in16
-rw-r--r--mk/tools.mk14
-rw-r--r--src/compiletest/compiletest.rs (renamed from src/compiletest/compiletest.rc)0
-rw-r--r--src/libextra/extra.rs (renamed from src/libextra/std.rc)0
-rw-r--r--src/librust/rust.rs (renamed from src/librust/rust.rc)0
-rw-r--r--src/librustc/rustc.rs (renamed from src/librustc/rustc.rc)0
-rw-r--r--src/librustdoc/rustdoc.rs (renamed from src/librustdoc/rustdoc.rc)0
-rw-r--r--src/librusti/rusti.rs (renamed from src/librusti/rusti.rc)0
-rw-r--r--src/librustpkg/rustpkg.rs (renamed from src/librustpkg/rustpkg.rc)0
-rw-r--r--src/libstd/std.rs (renamed from src/libstd/core.rc)0
-rw-r--r--src/libsyntax/syntax.rs (renamed from src/libsyntax/syntax.rc)0
11 files changed, 15 insertions, 15 deletions
diff --git a/Makefile.in b/Makefile.in
index baae56c4f40..fa6c7806581 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -239,29 +239,29 @@ $(foreach target,$(CFG_TARGET_TRIPLES),\
 # Standard library variables
 ######################################################################
 
-STDLIB_CRATE := $(S)src/libstd/core.rc
+STDLIB_CRATE := $(S)src/libstd/std.rs
 STDLIB_INPUTS := $(wildcard $(addprefix $(S)src/libstd/,        \
-                                           core.rc *.rs */*.rs */*/*rs */*/*/*rs))
+                                           *.rs */*.rs */*/*rs */*/*/*rs))
 
 ######################################################################
 # Extra library variables
 ######################################################################
 
-EXTRALIB_CRATE := $(S)src/libextra/std.rc
+EXTRALIB_CRATE := $(S)src/libextra/extra.rs
 EXTRALIB_INPUTS := $(wildcard $(addprefix $(S)src/libextra/,          \
-                                          std.rc *.rs */*.rs))
+                                          *.rs */*.rs))
 
 ######################################################################
 # rustc crate variables
 ######################################################################
 
-COMPILER_CRATE := $(S)src/librustc/rustc.rc
+COMPILER_CRATE := $(S)src/librustc/rustc.rs
 COMPILER_INPUTS := $(wildcard $(addprefix $(S)src/librustc/,      \
-                           rustc.rc *.rs */*.rs */*/*.rs */*/*/*.rs))
+                           *.rs */*.rs */*/*.rs */*/*/*.rs))
 
-LIBSYNTAX_CRATE := $(S)src/libsyntax/syntax.rc
+LIBSYNTAX_CRATE := $(S)src/libsyntax/syntax.rs
 LIBSYNTAX_INPUTS := $(wildcard $(addprefix $(S)src/libsyntax/, \
-                            syntax.rc *.rs */*.rs */*/*.rs))
+                           *.rs */*.rs */*/*.rs))
 
 DRIVER_CRATE := $(S)src/driver/driver.rs
 
diff --git a/mk/tools.mk b/mk/tools.mk
index 8319d8d4e48..7b50441b3c7 100644
--- a/mk/tools.mk
+++ b/mk/tools.mk
@@ -12,23 +12,23 @@
 # and host architectures
 
 # The test runner that runs the cfail/rfail/rpass and bxench tests
-COMPILETEST_CRATE := $(S)src/compiletest/compiletest.rc
-COMPILETEST_INPUTS := $(wildcard $(S)src/compiletest/*rs)
+COMPILETEST_CRATE := $(S)src/compiletest/compiletest.rs
+COMPILETEST_INPUTS := $(wildcard $(S)src/compiletest/*.rs)
 
 # Rustpkg, the package manager and build system
-RUSTPKG_LIB := $(S)src/librustpkg/rustpkg.rc
-RUSTPKG_INPUTS := $(wildcard $(S)src/librustpkg/*rs)
+RUSTPKG_LIB := $(S)src/librustpkg/rustpkg.rs
+RUSTPKG_INPUTS := $(wildcard $(S)src/librustpkg/*.rs)
 
 # Rustdoc, the documentation tool
-RUSTDOC_LIB := $(S)src/librustdoc/rustdoc.rc
+RUSTDOC_LIB := $(S)src/librustdoc/rustdoc.rs
 RUSTDOC_INPUTS := $(wildcard $(S)src/librustdoc/*.rs)
 
 # Rusti, the JIT REPL
-RUSTI_LIB := $(S)src/librusti/rusti.rc
+RUSTI_LIB := $(S)src/librusti/rusti.rs
 RUSTI_INPUTS := $(wildcard $(S)src/librusti/*.rs)
 
 # Rust, the convenience tool
-RUST_LIB := $(S)src/librust/rust.rc
+RUST_LIB := $(S)src/librust/rust.rs
 RUST_INPUTS := $(wildcard $(S)src/librust/*.rs)
 
 # FIXME: These are only built for the host arch. Eventually we'll
diff --git a/src/compiletest/compiletest.rc b/src/compiletest/compiletest.rs
index e8876c4851b..e8876c4851b 100644
--- a/src/compiletest/compiletest.rc
+++ b/src/compiletest/compiletest.rs
diff --git a/src/libextra/std.rc b/src/libextra/extra.rs
index 11aebdf467f..11aebdf467f 100644
--- a/src/libextra/std.rc
+++ b/src/libextra/extra.rs
diff --git a/src/librust/rust.rc b/src/librust/rust.rs
index 68427745ff5..68427745ff5 100644
--- a/src/librust/rust.rc
+++ b/src/librust/rust.rs
diff --git a/src/librustc/rustc.rc b/src/librustc/rustc.rs
index 20705b3d797..20705b3d797 100644
--- a/src/librustc/rustc.rc
+++ b/src/librustc/rustc.rs
diff --git a/src/librustdoc/rustdoc.rc b/src/librustdoc/rustdoc.rs
index d02620229f5..d02620229f5 100644
--- a/src/librustdoc/rustdoc.rc
+++ b/src/librustdoc/rustdoc.rs
diff --git a/src/librusti/rusti.rc b/src/librusti/rusti.rs
index 57a2a48a0f6..57a2a48a0f6 100644
--- a/src/librusti/rusti.rc
+++ b/src/librusti/rusti.rs
diff --git a/src/librustpkg/rustpkg.rc b/src/librustpkg/rustpkg.rs
index 9242e450e24..9242e450e24 100644
--- a/src/librustpkg/rustpkg.rc
+++ b/src/librustpkg/rustpkg.rs
diff --git a/src/libstd/core.rc b/src/libstd/std.rs
index 13c54799fac..13c54799fac 100644
--- a/src/libstd/core.rc
+++ b/src/libstd/std.rs
diff --git a/src/libsyntax/syntax.rc b/src/libsyntax/syntax.rs
index 278600bc039..278600bc039 100644
--- a/src/libsyntax/syntax.rc
+++ b/src/libsyntax/syntax.rs