remove Makefile

This commit is contained in:
ge
2025-05-29 23:59:12 +03:00
parent 21faadcfc7
commit a35f385574

View File

@ -1,21 +0,0 @@
DOC_DIR = doc
all: test
test:
v test .
doc:
v doc -f html -m . -o $(DOC_DIR)
serve: clean doc
v -e "import net.http.file; file.serve(folder: '$(DOC_DIR)')"
build:
v -path "$$(realpath $$PWD/../)|@vlib|@vmodules" \
-prod -parallel-cc -cflags -static -cflags -s -d no_segfault_handler \
cmd/datasize -o datasize
clean:
rm -r $(DOC_DIR) >/dev/null 2>&1 || true
rm datasize >/dev/null 2>&1|| true