diff --git a/compiler/Makefile b/compiler/Makefile index 8df28caa04..a2f00b9f99 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -1,7 +1,7 @@ all: v vc v: vc - ./vc -o v . + ./vc -o v . && ./v -o v . vc: v.c cc -std=gnu11 -w -o vc v.c