1INCLUDES = -I$(top_srcdir)/include
2AM_CXXFLAGS = -W -Wall -DFOX
3
4## Cygwin
5if HAVE_CYGWIN
6AM_CXXFLAGS += -DWIN32
7AM_LDFLAGS = -mwindows
8endif # Cygwin
9
10## MinGW32
11if HAVE_MINGW32
12AM_LDFLAGS = -mwindows
13endif # MinGW32
14
15noinst_LTLIBRARIES = liblexlib.la
16
17liblexlib_la_SOURCES = \
18  Accessor.cxx \
19  CharacterSet.cxx \
20  LexerBase.cxx \
21  LexerModule.cxx \
22  LexerNoExceptions.cxx \
23  LexerSimple.cxx \
24  PropSetSimple.cxx \
25  StyleContext.cxx \
26  WordList.cxx
27
28noinst_HEADERS = \
29  Accessor.h \
30  CharacterSet.h \
31  LexAccessor.h \
32  LexerBase.h \
33  LexerModule.h \
34  LexerNoExceptions.h \
35  LexerSimple.h \
36  OptionSet.h \
37  PropSetSimple.h \
38  SparseState.h \
39  StyleContext.h \
40  WordList.h
41
42
43
44
45