]> git.lyx.org Git - features.git/blob - src/frontends/Makefile.am
move stuff around. probably not the final destination...
[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 EXTRA_DIST = pch.h
8
9 BUILT_SOURCES = $(PCH_FILE)
10
11 noinst_LTLIBRARIES = liblyxfrontends.la
12
13 AM_CPPFLAGS += $(PCH_FLAGS) -I$(srcdir)/..  $(BOOST_INCLUDES)
14
15 liblyxfrontends_la_SOURCES = \
16         ButtonPolicy.cpp \
17         ButtonPolicy.h \
18         Dialog.cpp \
19         Dialog.h \
20         frontend_helpers.cpp \
21         frontend_helpers.h \
22         alert.cpp \
23         alert.h \
24         Alert_pimpl.h \
25         Application.cpp \
26         Application.h \
27         NoGuiFontLoader.h \
28         NoGuiFontMetrics.h \
29         Dialogs.cpp \
30         Dialogs.h \
31         FileDialog.h \
32         FontLoader.h \
33         FontMetrics.h \
34         KeyModifier.h \
35         KeySymbol.h \
36         LyXView.cpp \
37         LyXView.h \
38         Painter.cpp \
39         Painter.h \
40         Clipboard.h \
41         Gui.h \
42         Selection.h \
43         WorkArea.cpp \
44         WorkArea.h \
45         WorkAreaManager.cpp \
46         WorkAreaManager.h \
47         mouse_state.h
48
49 ################################# Tests ################################
50
51 EXTRA_DIST += tests/test_biblio
52
53 TESTS = \
54         test_biblio
55
56 check_PROGRAMS = \
57         biblio
58
59 biblio_LDADD = $(BOOST_REGEX)
60 biblio_SOURCES = \
61         tests/biblio.cpp \
62         tests/boost.cpp
63
64 makeregfiles: ${check_PROGRAMS}
65         for all in ${check_PROGRAMS} ; do \
66                 ./$$all > ${srcdir}/regfiles/$$all ; \
67         done