blob: 59d6178f2c67f1a8baea17d9d865260611ac8311 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- src/makefile.orig 2024-04-23 05:51:50 UTC
+++ src/makefile
@@ -44,7 +44,6 @@ ifdef CLANG
BASE_FLAGS += --std=c++17
ifdef CLANG
-CXX = clang++
ifdef windir
# Clang on Win32 uses MSVC headers so will complain about strcpy without this
DEFINES += -D_CRT_SECURE_NO_DEPRECATE=1
@@ -73,9 +72,9 @@ RANLIB ?= ranlib
RANLIB ?= ranlib
-SCINTILLA_INCLUDE = ../../scintilla/include
+SCINTILLA_INCLUDE = $(LOCALBASE)/include/scintilla
-vpath %.h ../include ../../scintilla/include ../lexlib
+vpath %.h ../include $(LOCALBASE)/include/scintilla ../lexlib
vpath %.cxx ../src ../lexlib ../lexers
DEFINES += -D$(if $(DEBUG),DEBUG,NDEBUG)
|