tree structure change

This commit is contained in:
David Högborg
2015-07-16 12:21:12 +02:00
parent 26af95fd18
commit 52beaf1fc1
6 changed files with 128 additions and 8 deletions

24
Makefile Executable file
View File

@@ -0,0 +1,24 @@
.PHONY: setup build resources lint clean
VERSION = $(shell git describe --always --dirty)
TIMESTAMP = $(shell git show -s --format=%ct)
default: build
setup:
go get -u github.com/jteeuwen/go-bindata/...
resources:
go-bindata -pkg resources -o internal/resources/resources.go resources/...
build: resources
go build -o ./gopow *.go
lint:
golint .
clean:
rm -f gopow
rm -rf internal/resources