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 10:02:05 +02:00
$(CC) -std=gnu11 -w -I ./thirdparty/stdatomic/nix -o v vc/v.c -lm -lexecinfo
rm -rf vc/
2019-08-16 08:25:10 +02:00
@echo "V has been successfully built"