summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authors <[email protected]>2025-11-03 21:17:12 -0500
committers <[email protected]>2025-11-03 21:17:12 -0500
commit923d6aece0b508c303393b23e8f605d63f46835f (patch)
tree65b629c84a20d9cb1f34ba16797dbbe8861a7a91 /Makefile
downloaddborg-923d6aece0b508c303393b23e8f605d63f46835f.tar.gz
dborg-923d6aece0b508c303393b23e8f605d63f46835f.zip
hi
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..04e7e39
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+.PHONY: build build-admin clean install install-admin
+
+build:
+ go build -o dborg .
+
+build-admin:
+ go build -tags admin -o dborg .
+
+clean:
+ rm -f dborg
+
+install:
+ go install .
+
+install-admin:
+ go install -tags admin .