aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <m.shulhan@gmail.com>2026-02-16 15:20:34 +0700
committerShulhan <m.shulhan@gmail.com>2026-03-26 22:52:19 +0700
commitd2f190ed5db7bc5136a4eb8436b021ec014e18c7 (patch)
tree2edad0ca4c951c049c5d6e7cc6db8abfe8529c37
parent75d7f30a1b4eb60f7db894828be6a557b78574b5 (diff)
downloadgo-x-pkgsite-d2f190ed5db7bc5136a4eb8436b021ec014e18c7.tar.xz
[DO-NOT-MERGE] all: add make file
This is to easily remember what tasks and commands to run in this repository.
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000..b45d4865
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+.PHONY: all
+all: build
+
+.PHONY: build
+build: static
+ go build ./cmd/pkgsite
+
+.PHONY: static
+static:
+ go run ./devtools/cmd/static