aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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)