From d2268d900673d2583477251d70312d8445a62bcd Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 21 Apr 2015 16:56:55 -0700 Subject: [PATCH] Further makefile tweaks --- c-to-rust/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c-to-rust/Makefile b/c-to-rust/Makefile index ea7df1d..1107f66 100644 --- a/c-to-rust/Makefile +++ b/c-to-rust/Makefile @@ -11,7 +11,7 @@ target: mkdir -p $@ target/double: target/main.o target/libdouble_input.a - $(CC) -o $@ $(LDFLAGS) $^ + $(CC) -o $@ $^ $(LDFLAGS) target/libdouble_input.a: src/lib.rs Cargo.toml cargo build