]> git.saurik.com Git - wxWidgets.git/blame - src/stc/Makefile.in
fixes to client area origin handling
[wxWidgets.git] / src / stc / Makefile.in
CommitLineData
e9b66393
VZ
1###############################################################################
2# Purpose: Makefile.in for STC contrib for Unix with autoconf
3# Created: 14.03.00
4# Author: VZ
5# Version: $Id$
6###############################################################################
7
f6bcfd97 8top_srcdir = @top_srcdir@/..
e9b66393
VZ
9top_builddir = ../../..
10
f6bcfd97
BP
11scintilla_dir = $(top_srcdir)/contrib/src/stc/scintilla
12libsrc_dir = contrib/src/stc@PATH_IFS@$(scintilla_dir)/src
e9b66393 13
3711412e
RL
14TARGET_LIBNAME=libstc
15
16LIBVERSION_CURRENT=1
17LIBVERSION_REVISION=0
18LIBVERSION_AGE=0
e9b66393 19
f6bcfd97
BP
20HEADER_PATH=$(top_srcdir)/contrib/include/wx
21HEADER_SUBDIR=stc
22
23HEADERS=stc.h
24
e9b66393 25OBJECTS=PlatWX.o ScintillaWX.o stc.o \
f6bcfd97 26 AutoComplete.o \
e9b66393 27 CallTip.o \
f6bcfd97
BP
28 CellBuffer.o \
29 ContractionState.o \
e9b66393 30 Document.o \
3f288b12 31 DocumentAccessor.o \
f6bcfd97 32 Editor.o \
e9b66393 33 Indicator.o \
f6bcfd97 34 KeyMap.o \
e9b66393 35 KeyWords.o \
3f288b12
GD
36 LexAVE.o \
37 LexAda.o \
38 LexCPP.o \
39 LexConf.o \
40 LexEiffel.o \
41 LexHTML.o \
42 LexLisp.o \
43 LexLua.o \
44 LexOthers.o \
45 LexPascal.o \
46 LexPerl.o \
47 LexPython.o \
48 LexRuby.o \
49 LexSQL.o \
50 LexVB.o \
f6bcfd97 51 LineMarker.o \
e9b66393 52 PropSet.o \
3f288b12 53 RESearch.o \
f6bcfd97 54 ScintillaBase.o \
e9b66393 55 Style.o \
3f288b12 56 UniConversion.o \
f6bcfd97 57 ViewStyle.o \
3f288b12 58 WindowAccessor.o \
f6bcfd97 59
f36e7ad8 60DEPFILES=$(OBJECTS:.o=.d)
f6bcfd97
BP
61
62APPEXTRADEFS=-D__WX__ -DSCI_LEXER -I$(scintilla_dir)/src -I$(scintilla_dir)/include -I$(top_srcdir)/contrib/include
e9b66393
VZ
63
64include $(top_builddir)/src/makelib.env
f36e7ad8
GD
65
66-include $(DEPFILES)