From e2a09fb5c6d822cf46a28ca371a7c426994e31c8 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 20 Mar 2013 23:56:54 -0500 Subject: fix makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9d6f29b..434d288 100644 --- a/Makefile +++ b/Makefile @@ -6,15 +6,15 @@ TESTS = bin/termios bin/termios2 bin/termios3 bin/rl all: build tests -build: lib/built +build: tmp/built tests: $(TESTS) -bin/%: test/%.rs +bin/%: test/%.rs tmp/built @mkdir -p bin $(RUSTC) --out-dir bin -L lib $< -lib/built: $(MAIN_SOURCE) $(OTHER_SOURCES) tmp/libtermios_wrapper.a tmp/libcurses_helper.a +tmp/built: $(MAIN_SOURCE) $(OTHER_SOURCES) tmp/libtermios_wrapper.a tmp/libcurses_helper.a @mkdir -p lib $(RUSTC) --out-dir lib -L tmp $(MAIN_SOURCE) && touch tmp/built -- cgit v1.2.3-54-g00ecf