v/Makefile

11 lines
192 B
Makefile
Raw Normal View History

CC ?= cc
2019-08-27 16:35:48 +00:00
all:
rm -rf vc/
2019-08-17 16:24:22 +00:00
git clone --depth 1 --quiet https://github.com/vlang/vc
${CC} -std=gnu11 -w -o v vc/v.c -lm
2019-08-16 20:31:45 +00:00
./v -o v compiler
rm -rf vc/
2019-08-16 06:25:10 +00:00
@echo "V has been successfully built"
2019-06-23 02:34:41 +00:00