Revert "update makefile"

This reverts commit 4229892e29.
pull/2334/head
Alexander Medvednikov 2019-10-14 03:48:26 +03:00
parent 4229892e29
commit 5a80bf27f4
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 v.v
./v0.exe -o v.exe compiler
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 v.v; \
./v -o v compiler; \
fi)
endif
rm -rf vc/