diff options
| author | mitchell <unknown> | 2019-10-26 00:19:46 -0400 |
|---|---|---|
| committer | mitchell <unknown> | 2019-10-26 00:19:46 -0400 |
| commit | 90d51fc95c2529a79a6be24832a835b4cac3be5d (patch) | |
| tree | 3e2a5ebc554a579b85368b18c8550b09f99ed3b6 | |
| parent | 632bf5eb1f2825ac1c7f4c9850462ad1fe68990d (diff) | |
| download | scintilla-mirror-90d51fc95c2529a79a6be24832a835b4cac3be5d.tar.gz | |
Updated check.mak to include Lua include path only for LexLPeg.o.
| -rw-r--r-- | check.mak | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -7,7 +7,7 @@ .SUFFIXES: .cxx .c .o .h .a -INCLUDEDIRS = -Iinclude -Isrc -Ilexlib -I/usr/include/lua5.1 +INCLUDEDIRS = -Iinclude -Isrc -Ilexlib CC = gcc CXX = g++ AR = ar @@ -175,6 +175,9 @@ qt-clang/ScintillaEditBase/Makefile: QMAKE_CXX="$(CLANG_CXX)" sed -i -e 's/libScintillaEditBase/clang-libScintillaEditBase/;' $@ +# LexLPeg objects. +win32/LexLPeg.o cocoa/LexLPeg.o gtk/LexLPeg.o curses/LexLPeg.o: INCLUDEDIRS += -I/usr/include/lua5.1 + deps: win32_deps cocoa_deps gtk_deps curses_deps win32_deps: src/*.cxx lexlib/*.cxx lexers/*.cxx win32/*.cxx $(CROSS_WIN32)$(CXX) -MM $(CXXFLAGS) $^ | \ |
