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

makefile: hide the warnings for now

This commit is contained in:
Alexander Medvednikov 2019-09-17 18:01:49 +03:00 committed by GitHub
parent 52c5f0172e
commit 3c0fce4928
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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