diff --git a/Makefile b/Makefile index e5397dd3..998cbed3 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,13 @@ +# aliases all: tgo tgo: build/tgo test: build/hello.o -CFLAGS = -Wall -Werror -O2 -g -flto - .PHONY: all tgo test run-test clean +CFLAGS = -Wall -Werror -O2 -g -flto + build/tgo: *.go @mkdir -p build @go build -o build/tgo -i .