Default Makefile task should be to test

This commit is contained in:
Mitchell Hashimoto 2014-05-23 17:00:51 -07:00
parent f22cc62b2c
commit 7e06b45232
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
*.dll
example.tf
vendor/

View File

@ -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