Makefile: suppress -I for current dir
This commit is contained in:
parent
9391b7840d
commit
65494bc977
2
Makefile
2
Makefile
|
|
@ -2,7 +2,7 @@ EXEC_NAME=cycloader
|
||||||
SRC= $(wildcard *.cpp)
|
SRC= $(wildcard *.cpp)
|
||||||
OBJS= $(SRC:.cpp=.o)
|
OBJS= $(SRC:.cpp=.o)
|
||||||
LDFLAGS=-lm -g -Wall -std=c++11 $(shell pkg-config --libs libftdipp1)
|
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)
|
all:$(EXEC_NAME)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue