]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/Makefile.am
controller-view split for TOC popup.
[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         biblio.C \
14         biblio.h \
15         character.C \
16         character.h \
17         ButtonController.h \
18         ButtonControllerBase.C \
19         ButtonControllerBase.h \
20         ButtonPolicies.C \
21         ButtonPolicies.h \
22         ControlBibitem.C \
23         ControlBibitem.h \
24         ControlBibtex.C \
25         ControlBibtex.h \
26         ControlButton.C \
27         ControlButton.h \
28         ControlCharacter.C \
29         ControlCharacter.h \
30         ControlCitation.C \
31         ControlCitation.h \
32         ControlCommand.C \
33         ControlCommand.h \
34         ControlConnections.C \
35         ControlConnections.h \
36         ControlCopyright.C \
37         ControlCopyright.h \
38         ControlCredits.h \
39         ControlCredits.C \
40         ControlDialogs.h \
41         ControlError.h \
42         ControlError.C \
43         ControlExternal.h \
44         ControlExternal.C \
45         ControlGraphics.h \
46         ControlGraphics.C \
47         ControlInclude.C \
48         ControlInclude.h \
49         ControlIndex.C \
50         ControlIndex.h \
51         ControlInset.h \
52         ControlLog.C \
53         ControlLog.h \
54         ControlMinipage.C \
55         ControlMinipage.h \
56         ControlPreamble.C \
57         ControlPreamble.h \
58         ControlPrint.C \
59         ControlPrint.h \
60         ControlRef.C \
61         ControlRef.h \
62         ControlSearch.C \
63         ControlSearch.h \
64         ControlSplash.C \
65         ControlSplash.h \
66         ControlTabularCreate.C \
67         ControlTabularCreate.h \
68         ControlToc.C \
69         ControlToc.h \
70         ControlUrl.C \
71         ControlUrl.h \
72         ControlVCLog.C \
73         ControlVCLog.h \
74         GUI.h \
75         ViewBase.h \
76         helper_funcs.C \
77         helper_funcs.h
78
79 # just copied from old lyx repository
80 dist-hook:
81         for subdir in $(LYXDATADIRS) ; do \
82         test -d $(distdir)/$$subdir \
83         || mkdir $(distdir)/$$subdir \
84         || exit 1; \
85         chmod 777 $(distdir)/$$subdir; \
86         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
87         echo $$list ; \
88         for fil in $$list ; do \
89         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
90         done ; \
91         done