Added initial version of the grid and the model. Much work left to do on this.
This commit is contained in:
parent
1975e79788
commit
a1c3c0d295
4 changed files with 288 additions and 5 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue