bootstrap: add BSD makefile

pull/2049/head
joe-conigliaro 2019-09-20 19:22:54 +10:00 committed by Alexander Medvednikov
parent 9a7fface7d
commit ba4ea351c7
1 changed files with 8 additions and 0 deletions

8
BSDmakefile 100644
View File

@ -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"