7 lines
136 B
Makefile
7 lines
136 B
Makefile
#!make
|
|
|
|
build-linux:
|
|
GOOS=linux go build -o out/ff_renamer main.go
|
|
|
|
build-windows:
|
|
GOOS=windows go build -o out/ff_renamer.exe main.go
|