Modernize configure.ac a bit
[geany-mirror.git] / scintilla / Makefile.am
blob37002762f9922baabcecfc696f5e21ea0f63e110
2 SUBDIRS = include
4 noinst_LIBRARIES=libscintilla.a
6 AM_CXXFLAGS = -DNDEBUG -DGTK -DSCI_LEXER -DG_THREADS_IMPL_NONE
8 LEXER_SRCS= \
9 lexers/LexAda.cxx \
10 lexers/LexAsm.cxx \
11 lexers/LexBash.cxx \
12 lexers/LexBasic.cxx \
13 lexers/LexCOBOL.cxx \
14 lexers/LexCPP.cxx \
15 lexers/LexCSS.cxx \
16 lexers/LexCaml.cxx \
17 lexers/LexCmake.cxx \
18 lexers/LexD.cxx \
19 lexers/LexErlang.cxx \
20 lexers/LexForth.cxx \
21 lexers/LexFortran.cxx \
22 lexers/LexHTML.cxx \
23 lexers/LexHaskell.cxx \
24 lexers/LexLisp.cxx \
25 lexers/LexLua.cxx \
26 lexers/LexMarkdown.cxx \
27 lexers/LexMatlab.cxx \
28 lexers/LexNsis.cxx \
29 lexers/LexOthers.cxx \
30 lexers/LexPascal.cxx \
31 lexers/LexPerl.cxx \
32 lexers/LexPython.cxx \
33 lexers/LexR.cxx \
34 lexers/LexRuby.cxx \
35 lexers/LexSQL.cxx \
36 lexers/LexTCL.cxx \
37 lexers/LexTxt2tags.cxx \
38 lexers/LexVHDL.cxx \
39 lexers/LexVerilog.cxx \
40 lexers/LexYAML.cxx
42 SRCS= \
43 gtk/Converter.h \
44 gtk/PlatGTK.cxx \
45 gtk/ScintillaGTK.cxx \
46 gtk/scintilla-marshal.c \
47 gtk/scintilla-marshal.h \
48 lexlib/Accessor.cxx \
49 lexlib/Accessor.h \
50 lexlib/CharacterSet.cxx \
51 lexlib/CharacterSet.h \
52 lexlib/LexAccessor.h \
53 lexlib/LexerBase.cxx \
54 lexlib/LexerBase.h \
55 lexlib/LexerModule.cxx \
56 lexlib/LexerModule.h \
57 lexlib/LexerNoExceptions.cxx \
58 lexlib/LexerNoExceptions.h \
59 lexlib/LexerSimple.cxx \
60 lexlib/LexerSimple.h \
61 lexlib/OptionSet.h \
62 lexlib/PropSetSimple.cxx \
63 lexlib/PropSetSimple.h \
64 lexlib/SparseState.h \
65 lexlib/StyleContext.cxx \
66 lexlib/StyleContext.h \
67 lexlib/WordList.cxx \
68 lexlib/WordList.h \
69 src/AutoComplete.cxx \
70 src/AutoComplete.h \
71 src/CallTip.cxx \
72 src/CallTip.h \
73 src/Catalogue.cxx \
74 src/Catalogue.h \
75 src/CellBuffer.cxx \
76 src/CellBuffer.h \
77 src/CharClassify.cxx \
78 src/CharClassify.h \
79 src/ContractionState.cxx \
80 src/ContractionState.h \
81 src/Decoration.cxx \
82 src/Decoration.h \
83 src/Document.cxx \
84 src/Document.h \
85 src/Editor.cxx \
86 src/Editor.h \
87 src/ExternalLexer.cxx \
88 src/ExternalLexer.h \
89 src/FontQuality.h \
90 src/Indicator.cxx \
91 src/Indicator.h \
92 src/KeyMap.cxx \
93 src/KeyMap.h \
94 src/LineMarker.cxx \
95 src/LineMarker.h \
96 src/Partitioning.h \
97 src/PerLine.cxx \
98 src/PerLine.h \
99 src/PositionCache.cxx \
100 src/PositionCache.h \
101 src/RESearch.cxx \
102 src/RESearch.h \
103 src/RunStyles.cxx \
104 src/RunStyles.h \
105 src/SVector.h \
106 src/ScintillaBase.cxx \
107 src/ScintillaBase.h \
108 src/Selection.cxx \
109 src/Selection.h \
110 src/SplitVector.h \
111 src/Style.cxx \
112 src/Style.h \
113 src/UniConversion.cxx \
114 src/UniConversion.h \
115 src/ViewStyle.cxx \
116 src/ViewStyle.h \
117 src/XPM.cxx \
118 src/XPM.h \
119 $(LEXER_SRCS)
121 libscintilla_a_SOURCES = $(SRCS)
123 INCLUDES=-I$(top_srcdir) -I$(srcdir)/include -I$(srcdir)/src -I$(srcdir)/lexlib @GTK_CFLAGS@
125 marshallers: gtk/scintilla-marshal.list
126         glib-genmarshal --prefix scintilla_marshal gtk/scintilla-marshal.list --header > gtk/scintilla-marshal.h
127         glib-genmarshal --prefix scintilla_marshal gtk/scintilla-marshal.list --body > gtk/scintilla-marshal.c
129 EXTRA_DIST=gtk/scintilla-marshal.list License.txt README version.txt