]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/Makefile.am
Various update/redraw fixes. Cleaned up InsetERT and added a dialog for
[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         ControlAboutlyx.C \
23         ControlAboutlyx.h \
24         ControlBibitem.C \
25         ControlBibitem.h \
26         ControlBibtex.C \
27         ControlBibtex.h \
28         ControlButtons.C \
29         ControlButtons.h \
30         ControlCharacter.C \
31         ControlCharacter.h \
32         ControlCitation.C \
33         ControlCitation.h \
34         ControlCommand.C \
35         ControlCommand.h \
36         ControlConnections.C \
37         ControlConnections.h \
38         ControlDialogs.h \
39         ControlError.h \
40         ControlError.C \
41         ControlERT.h \
42         ControlERT.C \
43         ControlExternal.h \
44         ControlExternal.C \
45         ControlFloat.h \
46         ControlFloat.C \
47         ControlGraphics.h \
48         ControlGraphics.C \
49         ControlInclude.C \
50         ControlInclude.h \
51         ControlIndex.C \
52         ControlIndex.h \
53         ControlInset.h \
54         ControlLog.C \
55         ControlLog.h \
56         ControlMinipage.C \
57         ControlMinipage.h \
58         ControlPreamble.C \
59         ControlPreamble.h \
60         ControlPrint.C \
61         ControlPrint.h \
62         ControlRef.C \
63         ControlRef.h \
64         ControlSearch.C \
65         ControlSearch.h \
66         ControlSpellchecker.C \
67         ControlSpellchecker.h \
68         ControlSplash.C \
69         ControlSplash.h \
70         ControlTabularCreate.C \
71         ControlTabularCreate.h \
72         ControlThesaurus.C \
73         ControlThesaurus.h \
74         ControlToc.C \
75         ControlToc.h \
76         ControlUrl.C \
77         ControlUrl.h \
78         ControlVCLog.C \
79         ControlVCLog.h \
80         GUI.h \
81         ViewBase.h \
82         helper_funcs.C \
83         helper_funcs.h
84
85 # just copied from old lyx repository
86 dist-hook:
87         for subdir in $(LYXDATADIRS) ; do \
88         test -d $(distdir)/$$subdir \
89         || mkdir $(distdir)/$$subdir \
90         || exit 1; \
91         chmod 777 $(distdir)/$$subdir; \
92         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
93         echo $$list ; \
94         for fil in $$list ; do \
95         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
96         done ; \
97         done