mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
simpler Makefile
This commit is contained in:
parent
63431ead94
commit
b16828dd4d
@ -1,13 +1,11 @@
|
|||||||
all: v
|
all: v
|
||||||
|
|
||||||
v: vc
|
v: v.c
|
||||||
./vc -o v .
|
cc -std=gnu11 -w -o v v.c
|
||||||
|
./v -o v .
|
||||||
vc: v.c
|
|
||||||
cc -std=gnu11 -w -o vc v.c
|
|
||||||
|
|
||||||
v.c:
|
v.c:
|
||||||
wget https://vlang.io/v.c
|
wget https://vlang.io/v.c
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
-rm v vc v.c
|
-rm vc v.c
|
||||||
|
Loading…
Reference in New Issue
Block a user