]> git.lyx.org Git - lyx.git/blob - src/frontends/Makefile.am
0d7b32dc633892c7ab72d5b6c10f5c2bc3a1da4f
[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_LTLIBRARIES = liblyxfrontends.la
8
9 AM_CPPFLAGS += -I$(srcdir)/..  $(BOOST_INCLUDES)
10
11 liblyxfrontends_la_SOURCES = \
12         alert.h \
13         Application.h \
14         NoGuiFontLoader.h \
15         NoGuiFontMetrics.h \
16         FileDialog.h \
17         FontLoader.h \
18         FontMetrics.h \
19         KeyModifier.h \
20         KeySymbol.h \
21         LyXView.h \
22         Painter.cpp \
23         Painter.h \
24         Clipboard.h \
25         Selection.h \
26         WorkArea.h \
27         WorkAreaManager.cpp \
28         WorkAreaManager.h \
29         mouse_state.h
30
31 ################################# Tests ################################
32
33 EXTRA_DIST = tests/test_biblio
34
35 TESTS = \
36         test_biblio
37
38 check_PROGRAMS = \
39         biblio
40
41 biblio_LDADD = $(BOOST_REGEX)
42 biblio_SOURCES = \
43         tests/biblio.cpp \
44         tests/boost.cpp
45
46 makeregfiles: ${check_PROGRAMS}
47         for all in ${check_PROGRAMS} ; do \
48                 ./$$all > ${srcdir}/regfiles/$$all ; \
49         done