]> git.lyx.org Git - lyx.git/blob - src/frontends/Makefile.am
Silence warning when unappropriate
[lyx.git] / src / frontends / Makefile.am
1 include $(top_srcdir)/config/common.am
2
3 SUBDIRS = $(FRONTENDS_SUBDIRS) .
4
5 DIST_SUBDIRS = qt .
6
7 noinst_LIBRARIES = liblyxfrontends.a
8
9 AM_CPPFLAGS += -I$(srcdir)/.. \
10         $(BOOST_INCLUDES) $(ICONV_INCLUDES) $(ZLIB_INCLUDES) $(NOD_INCLUDES)
11
12 liblyxfrontends_a_SOURCES = \
13         alert.h \
14         Application.h \
15         CaretGeometry.h \
16         FontLoader.h \
17         FontMetrics.h \
18         Delegates.h \
19         KeyModifier.h \
20         KeySymbol.h \
21         NullPainter.h \
22         Painter.h \
23         Clipboard.h \
24         Selection.h \
25         WorkArea.h \
26         WorkAreaManager.cpp \
27         WorkAreaManager.h \
28         mouse_state.h
29
30 ################################# Tests ################################
31
32 EXTRA_DIST = \
33         CMakeLists.txt \
34         tests/CMakeLists.txt \
35         tests/test_biblio.cmake \
36         tests/test_biblio \
37         tests/regfiles/biblio
38
39 TESTS = \
40         tests/test_biblio
41
42 check_PROGRAMS = \
43         biblio
44
45 biblio_LDADD = $(ICONV_LIBS) $(ZLIB_LIBS)
46 biblio_SOURCES = \
47         tests/biblio.cpp \
48         tests/boost.cpp
49
50 makeregfiles: ${check_PROGRAMS}
51         for all in ${check_PROGRAMS} ; do \
52                 ./$$all > ${srcdir}/tests/regfiles/$$all ; \
53         done