Makefile: add `-lm`

pull/1082/head
Alexander Medvednikov 2019-07-10 21:59:08 +02:00
parent 9efe305093
commit 892d2b58ac
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ all: clean v
$(info V has been successfully built) $(info V has been successfully built)
v: v.c v: v.c
cc -std=gnu11 -w -o v v.c cc -std=gnu11 -w -o v v.c -lm
./v -o v compiler ./v -o v compiler
rm v.c rm v.c