]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/Makefile.am
Set a maximum value to zoom level
[lyx.git] / src / frontends / Makefile.am
index 1d0b1bdca45fd10a71178fe56608c1b6d0e5e879..22b7508a7ac5587cb40e426c0127fb02cbed84d3 100644 (file)
@@ -1,44 +1,52 @@
 include $(top_srcdir)/config/common.am
 
-SUBDIRS = controllers @FRONTEND@
-
-noinst_LTLIBRARIES = libfrontends.la
-
-INCLUDES = $(FRONTEND_INCLUDES) -I$(srcdir)/..  $(SIGC_CFLAGS) $(BOOST_INCLUDES)
-
-libfrontends_la_LIBADD= @FRONTEND_GUILIB@ \
-       controllers/*.lo
-
-libfrontends_la_DEPENDENCIES = $(libfrontends_la_LIBADD)
-
-libfrontends_la_SOURCES=\
-       Alert.C \
-       Alert.h \
-       Alert_pimpl.h \
-       Dialogs.C \
-       Dialogs.h \
-       DialogBase.h \
-       FileDialog.h \
-       GUIRunTime.h \
-       Liason.C \
-       Liason.h \
-       Menubar.C \
-       Menubar.h \
-       Timeout.C \
-       Timeout.h \
-       Toolbar.C \
-       Toolbar.h
-
-if USE_LD_R
-libfrontends.la: libfrontends.o
-
-libfrontends.o: $(libfrontends_la_OBJECTS) $(libfrontends_la_DEPENDENCIES)
-       $(CXXLINK) $(libfrontends_la_OBJECTS) $(libfrontends_la_LIBADD)
-endif
-
-EXTRA_DIST = xforms qt2 gnome
-
-dist-hook:
-       @cd $(distdir) ; \
-       rm -rf `find qt2 -name \*CVS\*`; \
-       rm -rf `find gnome -name \*CVS\*`
+SUBDIRS = $(FRONTENDS_SUBDIRS) .
+
+DIST_SUBDIRS = qt4 .
+
+noinst_LIBRARIES = liblyxfrontends.a
+
+AM_CPPFLAGS += -I$(srcdir)/.. \
+       $(BOOST_INCLUDES) $(ICONV_INCLUDES) $(ZLIB_INCLUDES)
+
+liblyxfrontends_a_SOURCES = \
+       alert.h \
+       Application.h \
+       FontLoader.h \
+       FontMetrics.h \
+       Delegates.h \
+       KeyModifier.h \
+       KeySymbol.h \
+       NullPainter.h \
+       Painter.h \
+       Clipboard.h \
+       Selection.h \
+       WorkArea.h \
+       WorkAreaManager.cpp \
+       WorkAreaManager.h \
+       mouse_state.h
+
+################################# Tests ################################
+
+EXTRA_DIST = \
+       CMakeLists.txt \
+       tests/CMakeLists.txt \
+       tests/test_biblio.cmake \
+       tests/test_biblio \
+       tests/regfiles/biblio
+
+TESTS = \
+       tests/test_biblio
+
+check_PROGRAMS = \
+       biblio
+
+biblio_LDADD = $(BOOST_LIBS) $(ICONV_LIBS) $(ZLIB_LIBS)
+biblio_SOURCES = \
+       tests/biblio.cpp \
+       tests/boost.cpp
+
+makeregfiles: ${check_PROGRAMS}
+       for all in ${check_PROGRAMS} ; do \
+               ./$$all > ${srcdir}/tests/regfiles/$$all ; \
+       done