9 lines
87 B
Makefile
9 lines
87 B
Makefile
|
|
|
||
|
|
GOFILES = main.go ui.go
|
||
|
|
|
||
|
|
ted: $(GOFILES)
|
||
|
|
go build -o ted $(GOFILES)
|
||
|
|
|
||
|
|
clean:
|
||
|
|
-rm ted
|