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

15 lines
183 B
Makefile
Raw Normal View History

all: v
2019-06-23 05:34:41 +03:00
2019-06-25 22:46:07 +03:00
v: v.c
cc -std=gnu11 -w -o v v.c
./v -o v .
2019-06-23 05:34:41 +03:00
v.c:
2019-06-26 00:05:16 +03:00
wget https://raw.githubusercontent.com/vlang/vc/master/v.c
2019-06-23 05:34:41 +03:00
2019-06-26 01:58:17 +03:00
test:
find .. -name '*_test.v' | xargs v {}
2019-06-23 05:34:41 +03:00
clean:
2019-06-26 13:53:46 +03:00
-rm v.c