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

Makefile: use ./v

This commit is contained in:
Alexander Medvednikov 2019-08-16 23:31:45 +03:00 committed by GitHub
parent 94b900bd0a
commit a336775ae6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ PREFIX ?= /usr/local
all:
curl -o v.c -LsSf https://raw.githubusercontent.com/vlang/vc/master/v.c
${CC} -std=gnu11 -w -o v v.c -lm
v -o v compiler
./v -o v compiler
rm v.c
@echo "V has been successfully built"