]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/Makefile.am
- Applied the thesaurus patch.
[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         ControlExternal.h \
42         ControlExternal.C \
43         ControlGraphics.h \
44         ControlGraphics.C \
45         ControlInclude.C \
46         ControlInclude.h \
47         ControlIndex.C \
48         ControlIndex.h \
49         ControlInset.h \
50         ControlLog.C \
51         ControlLog.h \
52         ControlMinipage.C \
53         ControlMinipage.h \
54         ControlPreamble.C \
55         ControlPreamble.h \
56         ControlPrint.C \
57         ControlPrint.h \
58         ControlRef.C \
59         ControlRef.h \
60         ControlSearch.C \
61         ControlSearch.h \
62         ControlSpellchecker.C \
63         ControlSpellchecker.h \
64         ControlSplash.C \
65         ControlSplash.h \
66         ControlTabularCreate.C \
67         ControlTabularCreate.h \
68         ControlThesaurus.C \
69         ControlThesaurus.h \
70         ControlToc.C \
71         ControlToc.h \
72         ControlUrl.C \
73         ControlUrl.h \
74         ControlVCLog.C \
75         ControlVCLog.h \
76         GUI.h \
77         ViewBase.h \
78         helper_funcs.C \
79         helper_funcs.h
80
81 # just copied from old lyx repository
82 dist-hook:
83         for subdir in $(LYXDATADIRS) ; do \
84         test -d $(distdir)/$$subdir \
85         || mkdir $(distdir)/$$subdir \
86         || exit 1; \
87         chmod 777 $(distdir)/$$subdir; \
88         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
89         echo $$list ; \
90         for fil in $$list ; do \
91         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
92         done ; \
93         done