lyx_mirror/src/frontends/controllers/Makefile.am
Angus Leeming 8a4455d459 Reorganised, cleaned-up and improved documentation of controllers.
Implemented controller-view split for Copyright and Credits popups.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1803 a592a061-630c-0410-9148-cb99ea01b6c8
2001-03-22 11:24:36 +00:00

57 lines
1.3 KiB
Makefile

AUTOMAKE_OPTIONS = foreign 1.4
DISTCLEANFILES= *.orig *.rej *~ *.bak core
MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
noinst_LTLIBRARIES = libcontrollers.la
BOOST_INCLUDES = -I$(top_srcdir)/boost
INCLUDES = -I${top_srcdir}/src/ \
-I${top_srcdir}/src/frontends/ \
${SIGC_CFLAGS} $(BOOST_INCLUDES)
LIBS =
SUBDIRS =
ETAGS_ARGS = --lang=c++
libcontrollers_la_SOURCES=\
ButtonController.C \
ButtonController.h \
ButtonPolicies.C \
ButtonPolicies.h \
ControlBase.C \
ControlBase.h \
ControlBibitem.C \
ControlBibitem.h \
ControlBibtex.C \
ControlBibtex.h \
ControlCharacter.C \
ControlCharacter.h \
ControlCitation.C \
ControlCitation.h \
ControlCommand.C \
ControlCommand.h \
ControlConnections.C \
ControlConnections.h \
ControlCopyright.C \
ControlCredits.h \
ControlCredits.C \
ControlCopyright.h \
ControlLog.C \
ControlLog.h \
ControlVCLog.C \
ControlVCLog.h \
GUI.h \
ViewBase.h \
helper_funcs.C \
helper_funcs.h
# just copied from old lyx repository
dist-hook:
for subdir in $(LYXDATADIRS) ; do \
test -d $(distdir)/$$subdir \
|| mkdir $(distdir)/$$subdir \
|| exit 1; \
chmod 777 $(distdir)/$$subdir; \
list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
echo $$list ; \
for fil in $$list ; do \
cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
done ; \
done