From 7910b7ea117bbba833b22958787e515ad0533e96 Mon Sep 17 00:00:00 2001 From: prx Date: Thu, 25 Aug 2022 10:04:53 +0200 Subject: [PATCH] actually use cflags --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5baf4c5..6274537 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ PREFIX = /usr/local all: iblock iblock: main.c - ${CC} -o iblock main.c + ${CC} ${CFLAGS} -o iblock main.c clean: rm -f iblock