From 0dda0350dec5e82be8e5a7767c7f0a56c0d48c94 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Fri, 6 Mar 2026 11:48:29 -0500 Subject: init Go and Hugo --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..27685dc --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: public bin/webshopd + +public: + hugo build + +bin/%: cmd/% + go build -o $@ ./$< + +clean: + rm -rf bin public -- cgit v1.2.3