mirror of
https://github.com/mgerb/spaghet
synced 2026-01-09 08:32:50 +00:00
11 lines
165 B
Makefile
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
|