ted/src/makefile

13 lines
160 B
Makefile

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"