v/compiler/Makefile

15 lines
191 B
Makefile
Raw Normal View History

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