ted/src/makefile

9 lines
87 B
Makefile
Raw Normal View History

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