v/BSDmakefile

9 lines
172 B
Makefile
Raw Normal View History

2019-09-20 11:22:54 +02:00
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"