From 353a6edb7c2389d5d10cb0b68ff9504dd54cf392 Mon Sep 17 00:00:00 2001 From: Alex Medvednikov Date: Tue, 25 Jun 2019 02:12:03 +0200 Subject: [PATCH] Update Makefile --- compiler/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/Makefile b/compiler/Makefile index a2f00b9f99..8df28caa04 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -1,7 +1,7 @@ all: v vc v: vc - ./vc -o v . && ./v -o v . + ./vc -o v . vc: v.c cc -std=gnu11 -w -o vc v.c