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

makefile: now that v.c is regenerated after every commit, it is no longer needed to run "v -o v compiler"

This commit is contained in:
Alexander Medvednikov 2019-09-13 14:02:34 +03:00
parent 8fe46d5db5
commit 5055ac4b23

View File

@ -16,7 +16,6 @@ ifdef WIN32
./v0.exe -o v.exe compiler
else
$(CC) -std=gnu11 -w -o v vc/v.c -lm
./v -o v compiler
endif
rm -rf vc/
@echo "V has been successfully built"