mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
72344cfbe6
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20830 a592a061-630c-0410-9148-cb99ea01b6c8
62 lines
1.0 KiB
Makefile
62 lines
1.0 KiB
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
SUBDIRS = $(FRONTENDS_SUBDIRS) .
|
|
|
|
DIST_SUBDIRS = qt4 .
|
|
|
|
EXTRA_DIST = pch.h
|
|
|
|
BUILT_SOURCES = $(PCH_FILE)
|
|
|
|
noinst_LTLIBRARIES = liblyxfrontends.la
|
|
|
|
AM_CPPFLAGS += $(PCH_FLAGS) -I$(srcdir)/.. $(BOOST_INCLUDES)
|
|
|
|
liblyxfrontends_la_SOURCES = \
|
|
alert.cpp \
|
|
alert.h \
|
|
Alert_pimpl.h \
|
|
Application.cpp \
|
|
Application.h \
|
|
NoGuiFontLoader.h \
|
|
NoGuiFontMetrics.h \
|
|
Dialogs.cpp \
|
|
Dialogs.h \
|
|
FileDialog.h \
|
|
FontLoader.h \
|
|
FontMetrics.h \
|
|
KeyModifier.h \
|
|
KeySymbol.h \
|
|
LyXView.cpp \
|
|
LyXView.h \
|
|
Painter.cpp \
|
|
Painter.h \
|
|
Clipboard.h \
|
|
Gui.h \
|
|
Selection.h \
|
|
WorkArea.cpp \
|
|
WorkArea.h \
|
|
WorkAreaManager.cpp \
|
|
WorkAreaManager.h \
|
|
mouse_state.h
|
|
|
|
################################# Tests ################################
|
|
|
|
EXTRA_DIST += tests/test_biblio
|
|
|
|
TESTS = \
|
|
test_biblio
|
|
|
|
check_PROGRAMS = \
|
|
biblio
|
|
|
|
biblio_LDADD = $(BOOST_REGEX)
|
|
biblio_SOURCES = \
|
|
tests/biblio.cpp \
|
|
tests/boost.cpp
|
|
|
|
makeregfiles: ${check_PROGRAMS}
|
|
for all in ${check_PROGRAMS} ; do \
|
|
./$$all > ${srcdir}/regfiles/$$all ; \
|
|
done
|