This commit includes the following changes:
[wxWidgets.git] / src / stc / Makefile.in
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
8 top_srcdir = @top_srcdir@
9 top_builddir = ../../..
10
11 this_dir = $(top_srcdir)/src/stc
12 scintilla_dir=$(this_dir)/scintilla
13 VPATH=$(this_dir)@PATH_IFS@$(scintilla_dir)/src # ':' for autoconf
14
15 TARGET_LIBNAME=libstc
16
17 LIBVERSION_CURRENT=1
18 LIBVERSION_REVISION=0
19 LIBVERSION_AGE=0
20
21 OBJECTS=PlatWX.o ScintillaWX.o stc.o \
22 Accessor.o \
23 AutoComplete.o \
24 CallTip.o \
25 CellBuffer.o \
26 ContractionState.o \
27 Document.o \
28 Editor.o \
29 Indicator.o \
30 KeyMap.o \
31 KeyWords.o \
32 LexCPP.o \
33 LexHTML.o \
34 LexOthers.o \
35 LexPerl.o \
36 LexPython.o \
37 LexSQL.o \
38 LexVB.o \
39 LineMarker.o \
40 PropSet.o \
41 ScintillaBase.o \
42 Style.o \
43 ViewStyle.o
44
45 APPEXTRADEFS=-D__WX__ -DSCI_LEXER -I$(scintilla_dir)/src -I$(scintilla_dir)/include -I$(top_srcdir)/include
46
47 include $(top_builddir)/src/makelib.env