android: support more termux users without make errors
parent
9e19472c33
commit
39bc38233a
5
Makefile
5
Makefile
|
@ -28,15 +28,20 @@ ifdef WIN32
|
|||
rm -f v0.exe
|
||||
else
|
||||
$(CC) -std=gnu11 -w -o v vc/v.c $(LDFLAGS) -lm
|
||||
ifdef ANDROID
|
||||
chmod 755 v
|
||||
endif
|
||||
@(VC_V=`./v version | cut -f 3 -d " "`; \
|
||||
V_V=`git rev-parse --short HEAD`; \
|
||||
if [ $$VC_V != $$V_V ]; then \
|
||||
echo "Self rebuild ($$VC_V => $$V_V)"; \
|
||||
./v -o v v.v; \
|
||||
fi)
|
||||
ifndef ANDROID
|
||||
./v build module vlib/builtin > /dev/null
|
||||
./v build module vlib/strings > /dev/null
|
||||
./v build module vlib/strconv > /dev/null
|
||||
endif
|
||||
endif
|
||||
rm -rf vc/
|
||||
@echo "V has been successfully built"
|
||||
|
|
Loading…
Reference in New Issue