ted/makefile

13 lines
160 B
Makefile
Raw Normal View History

GO = go
2013-06-04 01:27:43 +00:00
GOFILES = main.go ui.go grid.go
2013-06-04 01:27:43 +00:00
ted: $(GOFILES)
$(GO) build -o ted $(GOFILES)
2013-06-04 01:27:43 +00:00
clean:
-rm ted
dependencies:
$(GO) get "github.com/nsf/termbox-go"