1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/BSDmakefile

9 lines
183 B
Makefile
Raw Normal View History

2019-09-20 12:22:54 +03:00
CC ?= cc
all:
rm -rf vc/
git clone --depth 1 --quiet https://github.com/vlang/vc
2019-12-18 14:13:43 +03:00
$(CC) -std=gnu11 -w -o v vc/v.c -lm -lexecinfo
2019-09-20 12:22:54 +03:00
rm -rf vc/
@echo "V has been successfully built"