aboutsummaryrefslogtreecommitdiff
path: root/rust/Makefile
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-03-05 13:07:30 -0600
committerJoel Martin <github@martintribe.org>2015-03-05 13:07:30 -0600
commit35012ea4d59764ab3744f56b5fb5684e86e80422 (patch)
treeb27e98a23acf56242cf393aa6ea0cdf7815b7d38 /rust/Makefile
parent758933f21515b282423bfcb0a2d5a7eca9b41b20 (diff)
parente1b2062f95505729e5188d4c857003877e2c09b4 (diff)
downloadmal-35012ea4d59764ab3744f56b5fb5684e86e80422.tar.gz
mal-35012ea4d59764ab3744f56b5fb5684e86e80422.zip
Merge pull request #26 from alexcrichton/update
Update Rust code to the current Rust nightly
Diffstat (limited to 'rust/Makefile')
-rw-r--r--rust/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/Makefile b/rust/Makefile
index fa1edc9..c71289d 100644
--- a/rust/Makefile
+++ b/rust/Makefile
@@ -3,7 +3,7 @@
SOURCES_BASE = src/types.rs src/readline.rs \
src/reader.rs src/printer.rs \
src/env.rs src/core.rs
-SOURCES_LISP = src/env.rs src/core.rs src/stepA_mal.rs
+SOURCES_LISP = src/env.rs src/core.rs src/bin/stepA_mal.rs
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
#####################
@@ -28,7 +28,7 @@ clean:
cargo clean
rm -f mal
-.PHONY: stats stats-lisp
+.PHONY: stats stats-lisp mal
stats: $(SOURCES)
@wc $^