From 65494bc9772ba228a54a2685728da32735a166a8 Mon Sep 17 00:00:00 2001 From: Gwenhael Goavec-Merou Date: Sat, 5 Oct 2019 18:13:49 +0200 Subject: [PATCH] Makefile: suppress -I for current dir --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0fa7032..0b93254 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ EXEC_NAME=cycloader SRC= $(wildcard *.cpp) OBJS= $(SRC:.cpp=.o) LDFLAGS=-lm -g -Wall -std=c++11 $(shell pkg-config --libs libftdipp1) -CXXFLAGS=-I./ -I ../ -g -Wall -std=c++11 $(shell pkg-config --cflags libftdipp1) +CXXFLAGS=-g -Wall -std=c++11 $(shell pkg-config --cflags libftdipp1) all:$(EXEC_NAME)