2001-03-15 13:37:04 +00:00
|
|
|
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 \
|
2001-03-19 16:37:01 +00:00
|
|
|
ControlBibtex.C \
|
|
|
|
ControlBibtex.h \
|
2001-03-15 13:37:04 +00:00
|
|
|
ControlCitation.C \
|
|
|
|
ControlCitation.h \
|
|
|
|
ControlCommand.C \
|
|
|
|
ControlCommand.h \
|
|
|
|
ControlConnections.C \
|
|
|
|
ControlConnections.h \
|
2001-03-20 10:14:03 +00:00
|
|
|
ControlLog.C \
|
|
|
|
ControlLog.h \
|
|
|
|
ControlVCLog.C \
|
|
|
|
ControlVCLog.h \
|
2001-03-15 13:37:04 +00:00
|
|
|
ViewBase.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
|