]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/Makefile.am
use anon namespace, somewhat better comp. handling of minipages, not quite there yet
[lyx.git] / src / frontends / controllers / Makefile.am
1 AUTOMAKE_OPTIONS = foreign 1.4
2 DISTCLEANFILES= *.orig *.rej *~ *.bak core
3 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
4 noinst_LTLIBRARIES = libcontrollers.la
5 BOOST_INCLUDES = -I$(top_srcdir)/boost
6 INCLUDES = -I${top_srcdir}/src/ \
7         -I${top_srcdir}/src/frontends/ \
8         ${SIGC_CFLAGS} $(BOOST_INCLUDES)
9 LIBS =
10 SUBDIRS = 
11 ETAGS_ARGS = --lang=c++
12 libcontrollers_la_SOURCES=\
13         ButtonController.C \
14         ButtonController.h \
15         ButtonPolicies.C \
16         ButtonPolicies.h \
17         ControlBase.C \
18         ControlBase.h \
19         ControlBibitem.C \
20         ControlBibitem.h \
21         ControlBibtex.C \
22         ControlBibtex.h \
23         ControlCitation.C \
24         ControlCitation.h \
25         ControlCommand.C \
26         ControlCommand.h \
27         ControlConnections.C \
28         ControlConnections.h \
29         ViewBase.h
30
31 # just copied from old lyx repository
32 dist-hook:
33         for subdir in $(LYXDATADIRS) ; do \
34         test -d $(distdir)/$$subdir \
35         || mkdir $(distdir)/$$subdir \
36         || exit 1; \
37         chmod 777 $(distdir)/$$subdir; \
38         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
39         echo $$list ; \
40         for fil in $$list ; do \
41         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
42         done ; \
43         done