From f0598ebce43fc913c7c138fda9dbd9478e347be5 Mon Sep 17 00:00:00 2001 From: Radhitya Date: Wed, 15 Jan 2025 10:22:50 +0700 Subject: [PATCH] strawpunks --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 07787d6..d710330 100644 --- a/makefile +++ b/makefile @@ -1,9 +1,10 @@ cc= cc +cflags = -Wall -Wextra -std=c99 -pedantic src= main.c out= daisy install: - $(cc) $(src) -o $(out) + $(cc) $(cflags) $(src) -o $(out) clean: rm -rf source