From b16828dd4d00db34490949da4bdf6e3e5ef42b98 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Tue, 25 Jun 2019 21:46:07 +0200 Subject: [PATCH] simpler Makefile --- compiler/Makefile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/compiler/Makefile b/compiler/Makefile index 9f75c45645..0e98df8b5d 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -1,13 +1,11 @@ all: v -v: vc - ./vc -o v . - -vc: v.c - cc -std=gnu11 -w -o vc v.c +v: v.c + cc -std=gnu11 -w -o v v.c + ./v -o v . v.c: wget https://vlang.io/v.c clean: - -rm v vc v.c + -rm vc v.c