summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f840717..b903567 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,10 @@
.PHONY: all build lint serve-doc
all: build lint test
-build:
+embed:
+ go run ./internal/cmd/memfs
+
+build: embed
go build -o ./_bin/ ./cmd/...
##---- Run all tests and generate coverage as HTML.