2019-06-28 08:56:03 +03:00
|
|
|
all: clean 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 14:37:28 +03:00
|
|
|
curl -Os https://raw.githubusercontent.com/vlang/vc/master/v.c
|
2019-06-23 05:34:41 +03:00
|
|
|
|
2019-06-26 02:26:26 +03:00
|
|
|
test: v
|
2019-06-26 20:03:35 +03:00
|
|
|
find .. -name '*_test.v' -print0 | xargs -0 -n1 ./v
|
2019-06-27 14:14:59 +03:00
|
|
|
echo "Building V examples..."
|
2019-06-26 21:44:20 +03:00
|
|
|
find ../examples -name '*.v' -print0 | xargs -0 -n1 ./v
|
2019-06-26 01:58:17 +03:00
|
|
|
|
2019-06-23 05:34:41 +03:00
|
|
|
clean:
|
2019-06-26 19:12:24 +03:00
|
|
|
-rm -f v.c v
|