]> git.saurik.com Git - wxWidgets.git/blame - src/stc/Makefile.in
Added configtool to configure and Makefile.in
[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 11scintilla_dir = $(top_srcdir)/contrib/src/stc/scintilla
2b5f62a0 12libsrc_dir = contrib/src/stc/scintilla/src:$(top_srcdir)/contrib/src/stc
e9b66393 13
2b5f62a0 14TARGET_LIBNAME=lib@WX_LIBRARY_BASENAME@_stc-@WX_RELEASE@
3711412e 15
2b5f62a0
VZ
16LIBVERSION_CURRENT=@WX_CURRENT@
17LIBVERSION_REVISION=@WX_REVISION@
18LIBVERSION_AGE=@WX_AGE@
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 \
9e730a78
RD
37 LexAda.o \
38 LexAsm.o \
1a2fb4cd
RD
39 LexBaan.o \
40 LexBullant.o \
41 LexMatlab.o \
3f288b12
GD
42 LexCPP.o \
43 LexConf.o \
b8b0e402 44 LexCrontab.o \
9e730a78 45 LexCSS.o \
3f288b12 46 LexEiffel.o \
9e730a78 47 LexFortran.o \
3f288b12
GD
48 LexHTML.o \
49 LexLisp.o \
50 LexLua.o \
51 LexOthers.o \
9e730a78 52 LexPOV.o \
3f288b12
GD
53 LexPascal.o \
54 LexPerl.o \
55 LexPython.o \
56 LexRuby.o \
57 LexSQL.o \
58 LexVB.o \
f6bcfd97 59 LineMarker.o \
e9b66393 60 PropSet.o \
3f288b12 61 RESearch.o \
f6bcfd97 62 ScintillaBase.o \
e9b66393 63 Style.o \
b8b0e402 64 StyleContext.o \
3f288b12 65 UniConversion.o \
f6bcfd97 66 ViewStyle.o \
3f288b12 67 WindowAccessor.o \
9e730a78
RD
68 XPM.o \
69
f6bcfd97 70
f36e7ad8 71DEPFILES=$(OBJECTS:.o=.d)
f6bcfd97 72
1a2fb4cd 73APPEXTRADEFS=-D__WX__ -DSCI_LEXER -DLINK_LEXERS -I$(scintilla_dir)/src -I$(scintilla_dir)/include -I$(top_srcdir)/contrib/include
e9b66393
VZ
74
75include $(top_builddir)/src/makelib.env
f36e7ad8
GD
76
77-include $(DEPFILES)