]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/Makefile.am
Implemented controller-view split for Search 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         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         ControlCopyright.h \
33         ControlCredits.h \
34         ControlCredits.C \
35         ControlDialogs.h \
36         ControlError.h \
37         ControlError.C \
38         ControlInclude.C \
39         ControlInclude.h \
40         ControlInset.h \
41         ControlLog.C \
42         ControlLog.h \
43         ControlRef.C \
44         ControlRef.h \
45         ControlSearch.C \
46         ControlSearch.h \
47         ControlTabularCreate.C \
48         ControlTabularCreate.h \
49         ControlUrl.C \
50         ControlUrl.h \
51         ControlVCLog.C \
52         ControlVCLog.h \
53         GUI.h \
54         ViewBase.h \
55         helper_funcs.C \
56         helper_funcs.h
57
58 # just copied from old lyx repository
59 dist-hook:
60         for subdir in $(LYXDATADIRS) ; do \
61         test -d $(distdir)/$$subdir \
62         || mkdir $(distdir)/$$subdir \
63         || exit 1; \
64         chmod 777 $(distdir)/$$subdir; \
65         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
66         echo $$list ; \
67         for fil in $$list ; do \
68         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
69         done ; \
70         done