update makefile

pull/2334/head
Alexander Medvednikov 2019-10-14 03:40:18 +03:00
parent 3748de8736
commit 4229892e29
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ endif
all: fresh_vc fresh_tcc
ifdef WIN32
$(CC) -std=c99 -w -o v0.exe vc/v_win.c
./v0.exe -o v.exe compiler
./v0.exe -o v.exe v.v
rm -f v0.exe
else
$(CC) -std=gnu11 -w -o v vc/v.c -lm
@ -27,7 +27,7 @@ else
V_V=`git rev-parse --short HEAD`; \
if [ $$VC_V != $$V_V ]; then \
echo "Self rebuild ($$VC_V => $$V_V)"; \
./v -o v compiler; \
./v v.v; \
fi)
endif
rm -rf vc/