]> git.lyx.org Git - lyx.git/blob - src/frontends/Makefile.am
Use the OK/Apply paradigm for all document settings
[lyx.git] / src / frontends / Makefile.am
1 include $(top_srcdir)/config/common.am
2
3 SUBDIRS = $(FRONTENDS_SUBDIRS) .
4
5 DIST_SUBDIRS = qt4 .
6
7 noinst_LIBRARIES = liblyxfrontends.a
8
9 AM_CPPFLAGS += -I$(srcdir)/.. \
10         $(BOOST_INCLUDES) $(ICONV_INCLUDES) $(ZLIB_INCLUDES)
11
12 liblyxfrontends_a_SOURCES = \
13         alert.h \
14         Application.h \
15         FontLoader.h \
16         FontMetrics.h \
17         Delegates.h \
18         KeyModifier.h \
19         KeySymbol.h \
20         Painter.h \
21         Clipboard.h \
22         Selection.h \
23         WorkArea.h \
24         WorkAreaManager.cpp \
25         WorkAreaManager.h \
26         mouse_state.h
27
28 ################################# Tests ################################
29
30 EXTRA_DIST = \
31         CMakeLists.txt \
32         tests/CMakeLists.txt \
33         tests/test_biblio.cmake \
34         tests/test_biblio \
35         tests/regfiles/biblio
36
37 TESTS = \
38         tests/test_biblio
39
40 check_PROGRAMS = \
41         biblio
42
43 biblio_LDADD = $(BOOST_LIBS) $(ICONV_LIBS) $(ZLIB_LIBS)
44 biblio_SOURCES = \
45         tests/biblio.cpp \
46         tests/boost.cpp
47
48 makeregfiles: ${check_PROGRAMS}
49         for all in ${check_PROGRAMS} ; do \
50                 ./$$all > ${srcdir}/tests/regfiles/$$all ; \
51         done