Rearranged the source files and removed the makefile. To build run: go build ./...

This commit is contained in:
lmika 2015-01-03 10:37:15 +11:00
parent b187b05812
commit ea0b8e933c
5 changed files with 3 additions and 3 deletions

12
makefile Normal file
View file

@ -0,0 +1,12 @@
GO = go
GOFILES = main.go ui.go grid.go
ted: $(GOFILES)
$(GO) build -o ted $(GOFILES)
clean:
-rm ted
dependencies:
$(GO) get "github.com/nsf/termbox-go"