1
0
mirror of https://github.com/mgerb/spaghet synced 2026-01-12 06:02:49 +00:00
This commit is contained in:
2019-04-27 10:58:56 -05:00
commit fe761b5b26
3 changed files with 90 additions and 0 deletions

10
makefile Normal file
View File

@@ -0,0 +1,10 @@
build:
go build -o ./dist/spaghet ./main.go
windows:
GOOS=windows GOARCH=386 go build -o ./dist/spaghet.exe ./main.go
clean:
rm -rf ./dist
all: build windows