filestash/Makefile
2024-03-06 01:20:08 +11:00

23 lines
544 B
Makefile

all:
make build_init
make build_frontend
make build_backend
build_init:
go get ./...
go generate -x ./server/...
build_frontend:
NODE_ENV=production npm run build
build_backend:
CGO_ENABLED=1 go build --tags "fts5" -o dist/filestash cmd/main.go
build_backend_arm64:
CGO_ENABLED=1 GOOS=linux GOARCH=arm GOARM=7 CC=arm-linux-gnueabihf-gcc go build -o dist/filestash cmd/main.go
build_backend_amd64:
GOOS=linux CGO_ENABLED=1 GOARCH=amd64 CC=gcc go build -o dist/filestash cmd/main.go
clean_frontend:
rm -rf server/ctrl/static/www/