summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 740b9fd..edbfb2d 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
MOD=ricketyspace.net/peach
peach: fmt
- go build
+ go build ${BUILD_OPTS}
fmt:
go fmt ${MOD} ${MOD}/client ${MOD}/nws
@@ -12,3 +12,11 @@ fmt:
test:
go test ${MOD}/client ${MOD}/nws ${ARGS}
.PHONY: test
+
+clean:
+ go clean
+.PHONY: clean
+
+image:
+ ./bin/image
+.PHONY: image