]> git.saurik.com Git - wxWidgets.git/blame - contrib/src/stc/Makefile.in
Make it easier to not use wxPopupWindow in wxSTC, and for now, don't
[wxWidgets.git] / contrib / 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 36 LexAVE.o \
1a2fb4cd
RD
37 LexBaan.o \
38 LexBullant.o \
39 LexMatlab.o \
3f288b12
GD
40 LexAda.o \
41 LexCPP.o \
42 LexConf.o \
b8b0e402 43 LexCrontab.o \
3f288b12
GD
44 LexEiffel.o \
45 LexHTML.o \
46 LexLisp.o \
47 LexLua.o \
48 LexOthers.o \
49 LexPascal.o \
50 LexPerl.o \
51 LexPython.o \
52 LexRuby.o \
53 LexSQL.o \
54 LexVB.o \
f6bcfd97 55 LineMarker.o \
e9b66393 56 PropSet.o \
3f288b12 57 RESearch.o \
f6bcfd97 58 ScintillaBase.o \
e9b66393 59 Style.o \
b8b0e402 60 StyleContext.o \
3f288b12 61 UniConversion.o \
f6bcfd97 62 ViewStyle.o \
3f288b12 63 WindowAccessor.o \
f6bcfd97 64
f36e7ad8 65DEPFILES=$(OBJECTS:.o=.d)
f6bcfd97 66
1a2fb4cd 67APPEXTRADEFS=-D__WX__ -DSCI_LEXER -DLINK_LEXERS -I$(scintilla_dir)/src -I$(scintilla_dir)/include -I$(top_srcdir)/contrib/include
e9b66393
VZ
68
69include $(top_builddir)/src/makelib.env
f36e7ad8
GD
70
71-include $(DEPFILES)