go version

This commit is contained in:
2016-07-01 13:37:25 +03:00
parent a4d8e2b530
commit e179df8475
2 changed files with 29 additions and 2 deletions

View File

@@ -1,6 +1,9 @@
CFLAGS=-Wall -g
all: fake
all: fake gofake
gofake:
go build -o gofake fake.go
clean:
rm -f fake
rm -f fake gofake