]> git.lyx.org Git - features.git/blob - src/frontends/Makefile.am
merge the two parts of the implementation of frontends::Dialogs
[features.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         Gui.h \
28         Selection.h \
29         WorkArea.h \
30         WorkAreaManager.cpp \
31         WorkAreaManager.h \
32         mouse_state.h
33
34 ################################# Tests ################################
35
36 EXTRA_DIST = tests/test_biblio
37
38 TESTS = \
39         test_biblio
40
41 check_PROGRAMS = \
42         biblio
43
44 biblio_LDADD = $(BOOST_REGEX)
45 biblio_SOURCES = \
46         tests/biblio.cpp \
47         tests/boost.cpp
48
49 makeregfiles: ${check_PROGRAMS}
50         for all in ${check_PROGRAMS} ; do \
51                 ./$$all > ${srcdir}/regfiles/$$all ; \
52         done