From 9a23fd146be4ba64b0cb720993bdc73a514fecf2 Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 18 Oct 2019 12:37:46 +0300 Subject: . --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 09a764d..7a0491a 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,8 @@ SRC_DIR = src SRC = $(wildcard $(SRC_DIR)/*.cpp) OBJ = $(SRC:.cpp=.o) +INCLUDE = -I../lib/scriptpp + default: $(LIB) @@ -26,7 +28,7 @@ deps.mk: $(SRC) $(CC) -MM $^ > $@ %.o: %.cpp %.hpp - $(CC) $(CPPFLAGS) -c $< -o $@ + $(CC) $(CPPFLAGS) $(INCLUDE) -c $< -o $@ $(LIB): $(OBJ) ar rcs $@ $^ -- cgit v1.2.3