ted/src/makefile

9 lines
87 B
Makefile
Raw Normal View History

2013-06-04 01:27:43 +00:00
GOFILES = main.go ui.go
ted: $(GOFILES)
go build -o ted $(GOFILES)
clean:
-rm ted