aboutsummaryrefslogtreecommitdiff
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
parent7e1c1e127d952066bda5fbc94e3cbdb40e912119 (diff)
downloadmilf-rs-b5e110caf4d44263d01cd0edd16e814403b3b3a6.tar.gz
milf-rs-b5e110caf4d44263d01cd0edd16e814403b3b3a6.zip
Remove Makefile
-rw-r--r--.gitignore4
-rw-r--r--Makefile26
2 files changed, 2 insertions, 28 deletions
diff --git a/.gitignore b/.gitignore
index 6eeec87..4fffb2f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,2 @@
-build
-target
+/target
+/Cargo.lock
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)