]> git.lyx.org Git - lyx.git/blob - src/frontends/Makefile.am
merge frontend::Gui and frontend::Application
[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.cpp \
14         Application.h \
15         NoGuiFontLoader.h \
16         NoGuiFontMetrics.h \
17         Dialogs.h \
18         FileDialog.h \
19         FontLoader.h \
20         FontMetrics.h \
21         KeyModifier.h \
22         KeySymbol.h \
23         LyXView.h \
24         Painter.cpp \
25         Painter.h \
26         Clipboard.h \
27         Selection.h \
28         WorkArea.h \
29         WorkAreaManager.cpp \
30         WorkAreaManager.h \
31         mouse_state.h
32
33 ################################# Tests ################################
34
35 EXTRA_DIST = tests/test_biblio
36
37 TESTS = \
38         test_biblio
39
40 check_PROGRAMS = \
41         biblio
42
43 biblio_LDADD = $(BOOST_REGEX)
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}/regfiles/$$all ; \
51         done