From d48a3b8de197a01b0002cdb1c04e54620619a755 Mon Sep 17 00:00:00 2001 From: Ole Morud Date: Tue, 7 Jun 2022 15:39:48 +0200 Subject: [PATCH] update makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 449a574..37f8825 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ all: mkdir -p bin - cc graphics.c -o bin/graphics -lm -O3 + cc *.c -o bin/graphics -lm -O3 clean: rm -rf bin/ debug: mkdir -p bin - cc graphics.c -o bin/graphics -lm -g3 + cc *.c -o bin/graphics -lm -g3