Make some makefile variables overridable

This commit is contained in:
Alex Crichton 2014-06-26 19:27:08 -07:00
parent caf4071137
commit 7ba80c5ac4

View file

@ -1,6 +1,6 @@
RUSTC := rustc RUSTC ?= rustc
RUSTDOC := rustdoc RUSTDOC ?= rustdoc
BUILD := build BUILD ?= build
LIB := $(BUILD)/$(shell $(RUSTC) --crate-file-name src/toml.rs) LIB := $(BUILD)/$(shell $(RUSTC) --crate-file-name src/toml.rs)
TEST := $(BUILD)/tomltest TEST := $(BUILD)/tomltest