From 7e06b4523237d3408e9cbf354692e79046a8011b Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 23 May 2014 17:00:51 -0700 Subject: [PATCH] Default Makefile task should be to test --- .gitignore | 2 +- Makefile | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 04d705546..1a16d6f31 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ *.dll - example.tf +vendor/ diff --git a/Makefile b/Makefile index 43517ad52..4fee57f5f 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,8 @@ endif export CGO_CFLAGS CGO_LDFLAGS PATH +default: test + libucl: vendor/libucl/$(LIBUCL_NAME) test: libucl @@ -35,4 +37,4 @@ vendor/libucl: clean: rm -rf vendor -.PHONY: clean libucl test +.PHONY: clean default libucl test