]> git.lyx.org Git - lyx.git/blob - src/frontends/Makefile.am
more of that...
[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         FontLoader.h \
15         FontMetrics.h \
16         KeyModifier.h \
17         KeySymbol.h \
18         LyXView.h \
19         Painter.h \
20         Clipboard.h \
21         Selection.h \
22         WorkArea.h \
23         WorkAreaManager.cpp \
24         WorkAreaManager.h \
25         mouse_state.h
26
27 ################################# Tests ################################
28
29 EXTRA_DIST = tests/test_biblio
30
31 TESTS = \
32         test_biblio
33
34 check_PROGRAMS = \
35         biblio
36
37 biblio_LDADD = $(BOOST_REGEX)
38 biblio_SOURCES = \
39         tests/biblio.cpp \
40         tests/boost.cpp
41
42 makeregfiles: ${check_PROGRAMS}
43         for all in ${check_PROGRAMS} ; do \
44                 ./$$all > ${srcdir}/regfiles/$$all ; \
45         done