1
0
mirror of https://github.com/mgerb/spaghet synced 2026-01-09 08:32:50 +00:00
Files
spaghet/makefile
2019-04-27 10:58:56 -05:00

11 lines
165 B
Makefile

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