diff options
author | Aleksey Veresov <aleksey@veresov.pro> | 2019-10-18 12:37:46 +0300 |
---|---|---|
committer | Aleksey Veresov <aleksey@veresov.pro> | 2019-10-18 12:37:46 +0300 |
commit | 9a23fd146be4ba64b0cb720993bdc73a514fecf2 (patch) | |
tree | 9c8d9554d37f7ab25087e1468c012fb41a6e39ee /Makefile | |
parent | 7b09f265c1deb12c9e6778c4d92473d66fc5406b (diff) | |
download | texo-9a23fd146be4ba64b0cb720993bdc73a514fecf2.tar texo-9a23fd146be4ba64b0cb720993bdc73a514fecf2.tar.xz texo-9a23fd146be4ba64b0cb720993bdc73a514fecf2.zip |
.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 $@ $^ |