arimelody-web/Makefile

13 lines
217 B
Makefile
Raw Permalink Normal View History

EXEC = arimelody-web
.PHONY: $(EXEC)
2025-09-30 19:03:35 +01:00
build:
GOOS=linux GOARCH=amd64 go build -o $(EXEC)
2025-09-30 19:03:35 +01:00
bundle: build
2025-10-21 23:52:46 +01:00
tar czf $(EXEC).tar.gz --exclude ".DS_Store" $(EXEC) admin/static/ public/
clean:
rm $(EXEC) $(EXEC).tar.gz