]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/Makefile.am
Reorganised, cleaned-up and improved documentation of controllers.
[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         ControlCharacter.C \
24         ControlCharacter.h \
25         ControlCitation.C \
26         ControlCitation.h \
27         ControlCommand.C \
28         ControlCommand.h \
29         ControlConnections.C \
30         ControlConnections.h \
31         ControlCopyright.C \
32         ControlCredits.h \
33         ControlCredits.C \
34         ControlCopyright.h \
35         ControlLog.C \
36         ControlLog.h \
37         ControlVCLog.C \
38         ControlVCLog.h \
39         GUI.h \
40         ViewBase.h \
41         helper_funcs.C \
42         helper_funcs.h
43
44 # just copied from old lyx repository
45 dist-hook:
46         for subdir in $(LYXDATADIRS) ; do \
47         test -d $(distdir)/$$subdir \
48         || mkdir $(distdir)/$$subdir \
49         || exit 1; \
50         chmod 777 $(distdir)/$$subdir; \
51         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
52         echo $$list ; \
53         for fil in $$list ; do \
54         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
55         done ; \
56         done