Lines 1-4
Link Here
|
1 |
--- makefile.orig 2014-08-09 23:52:11 UTC |
1 |
--- makefile.orig 2015-09-22 01:37:15 UTC |
2 |
+++ makefile |
2 |
+++ makefile |
3 |
@@ -5,14 +5,6 @@ |
3 |
@@ -5,14 +5,6 @@ |
4 |
# GNU make does not like \r\n line endings so should be saved to CVS in binary form. |
4 |
# GNU make does not like \r\n line endings so should be saved to CVS in binary form. |
Lines 9-21
Link Here
|
9 |
-# thread also need to create Position Independent Executable -> search online documentation |
9 |
-# thread also need to create Position Independent Executable -> search online documentation |
10 |
-SANITIZE = address |
10 |
-SANITIZE = address |
11 |
-#SANITIZE = undefined |
11 |
-#SANITIZE = undefined |
12 |
-CXX = clang++ -fsanitize=$(SANITIZE) --std=c++0x -Wno-deprecated-register |
12 |
-CXX = clang++ -fsanitize=$(SANITIZE) -Wno-deprecated-register |
13 |
-CC = clang -fsanitize=$(SANITIZE) -Wno-empty-body |
13 |
-CC = clang -fsanitize=$(SANITIZE) -Wno-empty-body |
14 |
-endif |
14 |
-endif |
15 |
|
15 |
|
16 |
ifdef GTK3 |
16 |
ifdef GTK3 |
17 |
GTKVERSION=gtk+-3.0 |
17 |
GTKVERSION=gtk+-3.0 |
18 |
@@ -24,7 +16,7 @@ |
18 |
@@ -24,7 +16,7 @@ endif |
19 |
CONFIGFLAGS:=$(shell pkg-config --cflags $(GTKVERSION)) |
19 |
CONFIGFLAGS:=$(shell pkg-config --cflags $(GTKVERSION)) |
20 |
CONFIGLIB:=$(shell pkg-config --libs $(GTKVERSION) gthread-2.0 gmodule-no-export-2.0) |
20 |
CONFIGLIB:=$(shell pkg-config --libs $(GTKVERSION) gthread-2.0 gmodule-no-export-2.0) |
21 |
CONFIGTHREADS:= |
21 |
CONFIGTHREADS:= |
Lines 24-32
Link Here
|
24 |
ifndef prefix |
24 |
ifndef prefix |
25 |
ifdef gnomeprefix |
25 |
ifdef gnomeprefix |
26 |
prefix=$(gnomeprefix) |
26 |
prefix=$(gnomeprefix) |
27 |
@@ -113,8 +105,9 @@ |
27 |
@@ -114,8 +106,9 @@ FilePath.o SciTEBase.o FileWorker.o Cook |
28 |
FilePath.o SciTEBase.o FileWorker.o Cookie.o Credits.o SciTEBuffers.o SciTEIO.o StringList.o \ |
28 |
ExportHTML.o ExportPDF.o ExportRTF.o ExportTEX.o ExportXML.o \ |
29 |
Exporters.o MatchMarker.o StringHelpers.o \ |
29 |
MatchMarker.o StringHelpers.o \ |
30 |
PropSetFile.o MultiplexExtension.o DirectorExtension.o SciTEProps.o StyleDefinition.o StyleWriter.o Utf8_16.o \ |
30 |
PropSetFile.o MultiplexExtension.o DirectorExtension.o SciTEProps.o StyleDefinition.o StyleWriter.o Utf8_16.o \ |
31 |
- JobQueue.o GTKMutex.o IFaceTable.o $(COMPLIB) $(LUA_OBJS) |
31 |
- JobQueue.o GTKMutex.o IFaceTable.o $(COMPLIB) $(LUA_OBJS) |
32 |
- $(CXX) `$(CONFIGTHREADS)` -rdynamic -Wl,--as-needed -Wl,--version-script lua.vers -DGTK $^ -o $@ $(CONFIGLIB) $(LIBDL) -lm -lstdc++ |
32 |
- $(CXX) `$(CONFIGTHREADS)` -rdynamic -Wl,--as-needed -Wl,--version-script lua.vers -DGTK $^ -o $@ $(CONFIGLIB) $(LIBDL) -lm -lstdc++ |