df1b9fd010
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@335 ea778897-0a13-0410-b9d1-a72fbfd435f5
71 lines
1.3 KiB
Makefile
71 lines
1.3 KiB
Makefile
|
|
SUBDIRS = include
|
|
|
|
noinst_LIBRARIES=libscintilla.a
|
|
|
|
CC=g++
|
|
|
|
AM_CXXFLAGS = -DGTK -DGTK2 -DSCI_LEXER -DG_THREADS_IMPL_NONE
|
|
|
|
LEXER_SRCS= \
|
|
LexAsm.cxx \
|
|
LexBash.cxx \
|
|
LexOMS.cxx \
|
|
LexCPP.cxx \
|
|
LexCaml.cxx \
|
|
LexConf.cxx \
|
|
LexCrontab.cxx \
|
|
LexCSS.cxx \
|
|
LexHTML.cxx \
|
|
LexOthers.cxx \
|
|
LexPascal.cxx \
|
|
LexPerl.cxx \
|
|
LexPython.cxx \
|
|
LexRuby.cxx \
|
|
LexSQL.cxx \
|
|
LexTCL.cxx
|
|
|
|
SRCS= \
|
|
CallTip.cxx \
|
|
CellBuffer.cxx \
|
|
CharClassify.cxx \
|
|
ContractionState.cxx \
|
|
DocumentAccessor.cxx \
|
|
Document.cxx \
|
|
Editor.cxx \
|
|
Indicator.cxx \
|
|
KeyMap.cxx \
|
|
KeyWords.cxx \
|
|
LineMarker.cxx \
|
|
PropSet.cxx \
|
|
RESearch.cxx \
|
|
ScintillaBase.cxx \
|
|
StyleContext.cxx \
|
|
Style.cxx \
|
|
UniConversion.cxx \
|
|
ViewStyle.cxx \
|
|
WindowAccessor.cxx \
|
|
XPM.cxx \
|
|
AutoComplete.cxx \
|
|
ExternalLexer.cxx \
|
|
*.h \
|
|
PlatGTK.cxx \
|
|
ScintillaGTK.cxx \
|
|
$(LEXER_SRCS)
|
|
|
|
libscintilla_a_SOURCES = $(SRCS)
|
|
|
|
INCLUDES=-I$(top_srcdir) -Iinclude \
|
|
@PACKAGE_CFLAGS@
|
|
|
|
libscintilla_a_LIBADD = scintilla-marshal.o
|
|
|
|
scintilla-marshal.o: scintilla-marshal.c
|
|
gcc @PACKAGE_CFLAGS@ -c scintilla-marshal.c
|
|
|
|
marshallers: scintilla-marshal.list
|
|
glib-genmarshal --prefix scintilla_marshal scintilla-marshal.list --header > scintilla-marshal.h
|
|
glib-genmarshal --prefix scintilla_marshal scintilla-marshal.list --body > scintilla-marshal.c
|
|
|
|
EXTRA_DIST=scintilla-marshal.list scintilla-marshal.c scintilla-marshal.h
|