aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <m.shulhan@gmail.com>2026-02-16 15:20:34 +0700
committerShulhan <m.shulhan@gmail.com>2026-04-15 01:16:22 +0700
commite64c25877e784baab341663fbc75ff909ee404f5 (patch)
tree27ee310294d1b1ec956adfd653047f014be5a49a
parent14d652ebff33bd0e4769f47baba2574adabc494e (diff)
downloadgo-x-pkgsite-e64c25877e784baab341663fbc75ff909ee404f5.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