Makefile: better info message
parent
882700dd1b
commit
37f7fb9597
2
Makefile
2
Makefile
|
@ -1,10 +1,10 @@
|
||||||
all: clean v
|
all: clean v
|
||||||
|
$(info V has been successfully built)
|
||||||
|
|
||||||
v: v.c
|
v: v.c
|
||||||
cc -std=gnu11 -w -o v v.c
|
cc -std=gnu11 -w -o v v.c
|
||||||
./v -o v compiler
|
./v -o v compiler
|
||||||
rm v.c
|
rm v.c
|
||||||
echo "V has been successfully built"
|
|
||||||
|
|
||||||
v.c:
|
v.c:
|
||||||
curl -Os https://raw.githubusercontent.com/vlang/vc/master/v.c
|
curl -Os https://raw.githubusercontent.com/vlang/vc/master/v.c
|
||||||
|
|
Loading…
Reference in New Issue