Initial version of ted-v2.

This commit is contained in:
lmika 2013-06-04 11:27:43 +10:00
commit 1975e79788
3 changed files with 169 additions and 0 deletions

8
src/makefile Normal file
View file

@ -0,0 +1,8 @@
GOFILES = main.go ui.go
ted: $(GOFILES)
go build -o ted $(GOFILES)
clean:
-rm ted