mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
d77a22e2f9
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33393 a592a061-630c-0410-9148-cb99ea01b6c8
48 lines
839 B
Makefile
48 lines
839 B
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
SUBDIRS = $(FRONTENDS_SUBDIRS) .
|
|
|
|
DIST_SUBDIRS = qt4 .
|
|
|
|
noinst_LIBRARIES = liblyxfrontends.a
|
|
|
|
AM_CPPFLAGS += -I$(srcdir)/.. $(BOOST_INCLUDES)
|
|
|
|
liblyxfrontends_a_SOURCES = \
|
|
alert.h \
|
|
Application.h \
|
|
FontLoader.h \
|
|
FontMetrics.h \
|
|
Delegates.h \
|
|
KeyModifier.h \
|
|
KeySymbol.h \
|
|
Painter.h \
|
|
Clipboard.h \
|
|
Selection.h \
|
|
WorkArea.h \
|
|
WorkAreaManager.cpp \
|
|
WorkAreaManager.h \
|
|
mouse_state.h
|
|
|
|
################################# Tests ################################
|
|
|
|
EXTRA_DIST = \
|
|
tests/test_biblio \
|
|
tests/regfiles/biblio
|
|
|
|
TESTS = \
|
|
tests/test_biblio
|
|
|
|
check_PROGRAMS = \
|
|
biblio
|
|
|
|
biblio_LDADD = $(BOOST_LIBS)
|
|
biblio_SOURCES = \
|
|
tests/biblio.cpp \
|
|
tests/boost.cpp
|
|
|
|
makeregfiles: ${check_PROGRAMS}
|
|
for all in ${check_PROGRAMS} ; do \
|
|
./$$all > ${srcdir}/tests/regfiles/$$all ; \
|
|
done
|