diff --git a/BSDmakefile b/BSDmakefile new file mode 100644 index 0000000000..10bf757a6f --- /dev/null +++ b/BSDmakefile @@ -0,0 +1,8 @@ +CC ?= cc + +all: + rm -rf vc/ + git clone --depth 1 --quiet https://github.com/vlang/vc + $(CC) -std=gnu11 -w -o v vc/v.c -lm + rm -rf vc/ + @echo "V has been successfully built"