Rearranged the source files and removed the makefile. To build run: go build ./...
This commit is contained in:
parent
b187b05812
commit
ea0b8e933c
5 changed files with 3 additions and 3 deletions
12
makefile
Normal file
12
makefile
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue