]> git.lyx.org Git - lyx.git/blob - src/frontends/Makefile.am
Next camel
[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)/..  $(BOOST_INCLUDES)
10
11 liblyxfrontends_a_SOURCES = \
12         alert.h \
13         Application.h \
14         FontLoader.h \
15         FontMetrics.h \
16         Delegates.h \
17         KeyModifier.h \
18         KeySymbol.h \
19         LyXView.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         tests/test_biblio \
32         tests/regfiles/biblio
33
34 TESTS = \
35         tests/test_biblio
36
37 check_PROGRAMS = \
38         biblio
39
40 biblio_LDADD = $(BOOST_LIBS)
41 biblio_SOURCES = \
42         tests/biblio.cpp \
43         tests/boost.cpp
44
45 makeregfiles: ${check_PROGRAMS}
46         for all in ${check_PROGRAMS} ; do \
47                 ./$$all > ${srcdir}/tests/regfiles/$$all ; \
48         done