Makefile: suppress -I for current dir

This commit is contained in:
Gwenhael Goavec-Merou 2019-10-05 18:13:49 +02:00
parent 9391b7840d
commit 65494bc977
1 changed files with 1 additions and 1 deletions

View File

@ -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)