makefile: fix

This commit is contained in:
ge 2025-04-22 20:03:50 +03:00
parent d744ebf9f2
commit 21faadcfc7

View File

@ -14,8 +14,8 @@ serve: clean doc
build: build:
v -path "$$(realpath $$PWD/../)|@vlib|@vmodules" \ v -path "$$(realpath $$PWD/../)|@vlib|@vmodules" \
-prod -parallel-cc -cflags -static -cflags -s -d no_segfault_handler \ -prod -parallel-cc -cflags -static -cflags -s -d no_segfault_handler \
cmd/dataunit -o dataunit cmd/datasize -o datasize
clean: clean:
rm -r $(DOC_DIR) || true rm -r $(DOC_DIR) >/dev/null 2>&1 || true
rm dataunit || true rm datasize >/dev/null 2>&1|| true