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