diff --git a/server/Makefile b/server/Makefile index 48753d476..8165a3a5f 100644 --- a/server/Makefile +++ b/server/Makefile @@ -5,6 +5,10 @@ build: @echo "Building..." @go build -v -o bbs-go main.go +buildlinux: + @echo "Building..." + @GOOS=linux GOARCH=amd64 go build + # Run the application run: @go run main.go