aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-08-03 17:15:33 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-08-03 17:15:33 -0700
commitb5e110caf4d44263d01cd0edd16e814403b3b3a6 (patch)
treea9ccf53dfc07c146cf3dbafb72557e92828f00f3 /Makefile
parent7e1c1e127d952066bda5fbc94e3cbdb40e912119 (diff)
downloadmilf-rs-b5e110caf4d44263d01cd0edd16e814403b3b3a6.tar.gz
milf-rs-b5e110caf4d44263d01cd0edd16e814403b3b3a6.zip
Remove Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 5e50ea6..0000000
--- a/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-RUSTC ?= rustc
-RUSTDOC ?= rustdoc
-BUILD ?= build
-LIB := $(BUILD)/$(shell $(RUSTC) --print-file-name src/toml.rs)
-TEST := $(BUILD)/tomltest
-
-all: $(LIB)
-
--include $(BUILD)/toml.d
--include $(BUILD)/tomltest.d
-
-$(LIB): src/toml.rs
- @mkdir -p $(@D)
- $(RUSTC) $< --out-dir $(@D) --dep-info
-
-check: $(TEST) doctest
- $(TEST)
-
-$(TEST): src/toml.rs
- $(RUSTC) $< --test -o $@ --dep-info
-
-doctest: $(LIB)
- $(RUSTDOC) --test -L $(BUILD) src/toml.rs
-
-clean:
- rm -rf $(BUILD)