v/compiler/Makefile

15 lines
196 B
Makefile
Raw Normal View History

all: v
2019-06-23 02:34:41 +00:00
2019-06-25 19:46:07 +00:00
v: v.c
cc -std=gnu11 -w -o v v.c
./v -o v .
2019-06-23 02:34:41 +00:00
v.c:
curl -Os https://raw.githubusercontent.com/vlang/vc/master/v.c
2019-06-23 02:34:41 +00:00
2019-06-25 23:26:26 +00:00
test: v
find .. -name '*_test.v' | xargs ./v {}
2019-06-25 22:58:17 +00:00
2019-06-23 02:34:41 +00:00
clean:
2019-06-26 16:12:24 +00:00
-rm -f v.c v