mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-28 04:17:43 +00:00
c8089f8bf9
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3821 a592a061-630c-0410-9148-cb99ea01b6c8
40 lines
732 B
Makefile
40 lines
732 B
Makefile
include $(top_srcdir)/config/common.am
|
|
|
|
SUBDIRS = controllers @FRONTEND@
|
|
|
|
noinst_LTLIBRARIES = libfrontends.la
|
|
|
|
LIBS += @FRONTEND_LDFLAGS@ @FRONTEND_LIBS@
|
|
|
|
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
|
|
|
|
EXTRA_DIST = xforms qt2 gnome
|
|
|
|
dist-hook:
|
|
@cd $(distdir) ; \
|
|
rm -rf `find qt2 -name \*CVS\*`; \
|
|
rm -rf `find gnome -name \*CVS\*`
|