From fc10da76e7afb5316bbdcf4790f83e92e3479fa1 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 18 Dec 2016 15:22:17 -0500 Subject: [PATCH] Build main application and test suite separately from make targets --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 59bd4f7..254f3c5 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ all: - ./waf build + ./waf build --targets jes .PHONY: clean clean: @@ -7,5 +7,5 @@ clean: .PHONY: test test: - ./waf build + ./waf build --targets tests ./build/tests