From 9ee3b3df23b25a75bb484256b72456ef8900dd17 Mon Sep 17 00:00:00 2001 From: Joaquin Date: Thu, 19 May 2022 20:52:48 +0300 Subject: [PATCH] [make] removed Makefile compiler bias --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 99dadeb..6d0f265 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ all: - clang bus.c cpu.c cartridge.c -o exec + cc bus.c cpu.c cartridge.c -o exec clean: rm exec debug: - clang -static -g -DDEBUG bus.c cpu.c cartridge.c -o exec + cc -static -g -DDEBUG bus.c cpu.c cartridge.c -o exec