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
commitf7fcfa623e670dc533bb378912829c73a3593e63 (patch)
tree910119ff7293b407affa9ff34706d627d77a3a04 /Makefile
downloaddborg-f7fcfa623e670dc533bb378912829c73a3593e63.tar.gz
dborg-f7fcfa623e670dc533bb378912829c73a3593e63.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 .