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

9 lines
214 B
Makefile
Raw Normal View History

CC ?= cc
all:
rm -rf vc/
git clone --depth 1 --quiet https://github.com/vlang/vc
2021-09-28 11:02:05 +03:00
$(CC) -std=gnu11 -w -I ./thirdparty/stdatomic/nix -o v vc/v.c -lm -lexecinfo
rm -rf vc/
2019-08-16 09:25:10 +03:00
@echo "V has been successfully built"