]> git.saurik.com Git - wxWidgets.git/blame - src/stc/Makefile.in
compilation fix for DJGPP
[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 \
b8b0e402 40 LexCrontab.o \
3f288b12
GD
41 LexEiffel.o \
42 LexHTML.o \
43 LexLisp.o \
44 LexLua.o \
45 LexOthers.o \
46 LexPascal.o \
47 LexPerl.o \
48 LexPython.o \
49 LexRuby.o \
50 LexSQL.o \
51 LexVB.o \
f6bcfd97 52 LineMarker.o \
e9b66393 53 PropSet.o \
3f288b12 54 RESearch.o \
f6bcfd97 55 ScintillaBase.o \
e9b66393 56 Style.o \
b8b0e402 57 StyleContext.o \
3f288b12 58 UniConversion.o \
f6bcfd97 59 ViewStyle.o \
3f288b12 60 WindowAccessor.o \
f6bcfd97 61
f36e7ad8 62DEPFILES=$(OBJECTS:.o=.d)
f6bcfd97
BP
63
64APPEXTRADEFS=-D__WX__ -DSCI_LEXER -I$(scintilla_dir)/src -I$(scintilla_dir)/include -I$(top_srcdir)/contrib/include
e9b66393
VZ
65
66include $(top_builddir)/src/makelib.env
f36e7ad8
GD
67
68-include $(DEPFILES)