]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/Makefile.am
Merging BRANCH_MVC back into HEAD.
[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         ControlCitation.C \
22         ControlCitation.h \
23         ControlCommand.C \
24         ControlCommand.h \
25         ControlConnections.C \
26         ControlConnections.h \
27         ViewBase.h
28
29 # just copied from old lyx repository
30 dist-hook:
31         for subdir in $(LYXDATADIRS) ; do \
32         test -d $(distdir)/$$subdir \
33         || mkdir $(distdir)/$$subdir \
34         || exit 1; \
35         chmod 777 $(distdir)/$$subdir; \
36         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
37         echo $$list ; \
38         for fil in $$list ; do \
39         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
40         done ; \
41         done