lyx_mirror/src/frontends/Makefile.am
Pavel Sanda 5e768ab842 Next attempt to sanitize make dist.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23866 a592a061-630c-0410-9148-cb99ea01b6c8
2008-03-21 14:05:41 +00:00

47 lines
843 B
Makefile

include $(top_srcdir)/config/common.am
SUBDIRS = $(FRONTENDS_SUBDIRS) .
DIST_SUBDIRS = qt4 .
noinst_LTLIBRARIES = liblyxfrontends.la
AM_CPPFLAGS += -I$(srcdir)/.. $(BOOST_INCLUDES)
liblyxfrontends_la_SOURCES = \
alert.h \
Application.h \
FontLoader.h \
FontMetrics.h \
Delegates.h \
KeyModifier.h \
KeySymbol.h \
LyXView.h \
Painter.h \
Clipboard.h \
Selection.h \
WorkArea.h \
WorkAreaManager.cpp \
WorkAreaManager.h \
mouse_state.h
################################# Tests ################################
EXTRA_DIST = tests/test_biblio
TESTS = \
tests/test_biblio
check_PROGRAMS = \
biblio
biblio_LDADD = $(BOOST_LIBS) $(BOOST_REGEX)
biblio_SOURCES = \
tests/biblio.cpp \
tests/boost.cpp
makeregfiles: ${check_PROGRAMS}
for all in ${check_PROGRAMS} ; do \
./$$all > ${srcdir}/tests/regfiles/$$all ; \
done