diff options
author | Alex Crichton <alex@alexcrichton.com> | 2014-06-26 19:27:08 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-26 19:27:42 -0700 |
commit | 7ba80c5ac4a3f6bc3801bb4ac86fd65a569a07ba (patch) | |
tree | 730e5335e7666d61a5c222943fd3f7fb2f279445 | |
parent | caf4071137bc12edeb1b631376a079f81f22c058 (diff) | |
download | milf-rs-7ba80c5ac4a3f6bc3801bb4ac86fd65a569a07ba.tar.gz milf-rs-7ba80c5ac4a3f6bc3801bb4ac86fd65a569a07ba.zip |
Make some makefile variables overridable
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ -RUSTC := rustc -RUSTDOC := rustdoc -BUILD := build +RUSTC ?= rustc +RUSTDOC ?= rustdoc +BUILD ?= build LIB := $(BUILD)/$(shell $(RUSTC) --crate-file-name src/toml.rs) TEST := $(BUILD)/tomltest |