Added initial version of the grid and the model. Much work left to do on this.

This commit is contained in:
lmika 2013-06-04 16:17:48 +10:00
parent 1975e79788
commit a1c3c0d295
4 changed files with 288 additions and 5 deletions

View file

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