]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Makefile.am
Update the toolbars when the GuiView is shown
[lyx.git] / src / frontends / Makefile.am
index cb17040b123fc231cb3140c06255e7a9b6c31d00..ea0f09793f6272a189b96579ea359be56aaffa36 100644 (file)
@@ -4,21 +4,18 @@ SUBDIRS = $(FRONTENDS_SUBDIRS) .
 
 DIST_SUBDIRS = qt4 .
 
-noinst_LTLIBRARIES = liblyxfrontends.la
+noinst_LIBRARIES = liblyxfrontends.a
 
 AM_CPPFLAGS += -I$(srcdir)/..  $(BOOST_INCLUDES)
 
-liblyxfrontends_la_SOURCES = \
+liblyxfrontends_a_SOURCES = \
        alert.h \
        Application.h \
-       NoGuiFontLoader.h \
-       NoGuiFontMetrics.h \
-       FileDialog.h \
        FontLoader.h \
        FontMetrics.h \
+       Delegates.h \
        KeyModifier.h \
        KeySymbol.h \
-       LyXView.h \
        Painter.h \
        Clipboard.h \
        Selection.h \
@@ -29,20 +26,22 @@ liblyxfrontends_la_SOURCES = \
 
 ################################# Tests ################################
 
-EXTRA_DIST = tests/test_biblio
+EXTRA_DIST = \
+       tests/test_biblio \
+       tests/regfiles/biblio
 
 TESTS = \
-       test_biblio
+       tests/test_biblio
 
 check_PROGRAMS = \
        biblio
 
-biblio_LDADD = $(BOOST_REGEX)
+biblio_LDADD = $(BOOST_LIBS)
 biblio_SOURCES = \
        tests/biblio.cpp \
        tests/boost.cpp
 
 makeregfiles: ${check_PROGRAMS}
        for all in ${check_PROGRAMS} ; do \
-               ./$$all > ${srcdir}/regfiles/$$all ; \
+               ./$$all > ${srcdir}/tests/regfiles/$$all ; \
        done