| 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 | scintilla_dir = $(top_srcdir)/contrib/src/stc/scintilla |
| 12 | libsrc_dir = contrib/src/stc@PATH_IFS@$(scintilla_dir)/src |
| 13 | |
| 14 | TARGET_LIBNAME=libstc |
| 15 | |
| 16 | LIBVERSION_CURRENT=1 |
| 17 | LIBVERSION_REVISION=0 |
| 18 | LIBVERSION_AGE=0 |
| 19 | |
| 20 | HEADER_PATH=$(top_srcdir)/contrib/include/wx |
| 21 | HEADER_SUBDIR=stc |
| 22 | |
| 23 | HEADERS=stc.h |
| 24 | |
| 25 | OBJECTS=PlatWX.o ScintillaWX.o stc.o \ |
| 26 | AutoComplete.o \ |
| 27 | CallTip.o \ |
| 28 | CellBuffer.o \ |
| 29 | ContractionState.o \ |
| 30 | Document.o \ |
| 31 | DocumentAccessor.o \ |
| 32 | Editor.o \ |
| 33 | Indicator.o \ |
| 34 | KeyMap.o \ |
| 35 | KeyWords.o \ |
| 36 | LexAVE.o \ |
| 37 | LexBaan.o \ |
| 38 | LexBullant.o \ |
| 39 | LexMatlab.o \ |
| 40 | LexAda.o \ |
| 41 | LexCPP.o \ |
| 42 | LexConf.o \ |
| 43 | LexCrontab.o \ |
| 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 \ |
| 55 | LineMarker.o \ |
| 56 | PropSet.o \ |
| 57 | RESearch.o \ |
| 58 | ScintillaBase.o \ |
| 59 | Style.o \ |
| 60 | StyleContext.o \ |
| 61 | UniConversion.o \ |
| 62 | ViewStyle.o \ |
| 63 | WindowAccessor.o \ |
| 64 | |
| 65 | DEPFILES=$(OBJECTS:.o=.d) |
| 66 | |
| 67 | APPEXTRADEFS=-D__WX__ -DSCI_LEXER -DLINK_LEXERS -I$(scintilla_dir)/src -I$(scintilla_dir)/include -I$(top_srcdir)/contrib/include |
| 68 | |
| 69 | include $(top_builddir)/src/makelib.env |
| 70 | |
| 71 | -include $(DEPFILES) |