From e1705cd84a5221cdb5e36234afab524bdf683ce4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Mon, 14 Sep 2020 13:39:40 +0200 Subject: [PATCH] :wrench: Do not use CICFLAGS --- tests/import/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/import/Makefile b/tests/import/Makefile index 8fc1ffdc..6327be10 100644 --- a/tests/import/Makefile +++ b/tests/import/Makefile @@ -4,8 +4,7 @@ CC ?= gcc NAME := ${NAME} SRC = ${NAME}.c OBJ = $(SRC:.c=.o) -CFLAGS = -std=c99 $(../../gwion -k 2>&1 | grep CFLAGS | sed 's/CFLAGS: //') ${INC} ${CICFLAGS} -Wall -Wextra -g -Og -LDFLAGS = $(../../gwion -k 2>&1 | grep LDFLAGS) +CFLAGS += -std=c99 ${INC} -Wall -Wextra -g -Og # os specific ifeq ($(shell uname), Darwin) -- 2.43.0