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