]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Makefile.am
try this for distinguishing inner and outer tabs
[lyx.git] / src / frontends / xforms / Makefile.am
1 AUTOMAKE_OPTIONS = foreign 1.4
2 DISTCLEANFILES= *.orig *.rej *~ *.bak core
3 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
4 noinst_LTLIBRARIES = libxforms.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 LDFLAGS=
11 LYXDATADIRS = forms
12 ETAGS_ARGS = --lang=c++
13 # Alphabetical order please.  It makes it easier to figure out what's missing. 
14 libxforms_la_SOURCES = \
15         ButtonController.C \
16         ButtonController.h \
17         Color.C \
18         Color.h \
19         Dialogs.C \
20         GUIRunTime.C \
21         FormBase.C \
22         FormBase.h \
23         FormBibitem.C \
24         FormBibitem.h \
25         form_bibitem.C \
26         form_bibitem.h \
27         FormBibtex.C \
28         FormBibtex.h \
29         form_bibtex.C \
30         form_bibtex.h \
31         FormBrowser.C \
32         FormBrowser.h \
33         form_browser.C \
34         form_browser.h \
35         FormCitation.C \
36         FormCitation.h \
37         form_citation.C \
38         form_citation.h \
39         FormCopyright.C \
40         FormCopyright.h \
41         form_copyright.C \
42         form_copyright.h \
43         FormDocument.C \
44         FormDocument.h \
45         form_document.C \
46         form_document.h \
47         FormError.C \
48         FormError.h \
49         form_error.C \
50         form_error.h \
51         FormGraphics.C \
52         FormGraphics.h \
53         form_graphics.C \
54         form_graphics.h \
55         FormInclude.C \
56         FormInclude.h \
57         form_include.C \
58         form_include.h \
59         FormIndex.C \
60         FormIndex.h \
61         form_index.C \
62         form_index.h \
63         FormInset.C \
64         FormInset.h \
65         FormLog.C \
66         FormLog.h \
67         FormParagraph.C \
68         FormParagraph.h \
69         form_paragraph.C \
70         form_paragraph.h \
71         FormPreamble.C \
72         FormPreamble.h \
73         form_preamble.C \
74         form_preamble.h \
75         FormPreferences.C \
76         FormPreferences.h \
77         form_preferences.C \
78         form_preferences.h \
79         FormPrint.C \
80         FormPrint.h \
81         form_print.C \
82         form_print.h \
83         FormRef.C \
84         FormRef.h \
85         form_ref.C \
86         form_ref.h \
87         FormSplash.C \
88         FormSplash.h \
89         form_splash.C \
90         form_splash.h \
91         FormTabular.C \
92         FormTabular.h \
93         form_tabular.C \
94         form_tabular.h \
95         FormTabularCreate.C \
96         FormTabularCreate.h \
97         form_tabular_create.C \
98         form_tabular_create.h \
99         FormToc.C \
100         FormToc.h \
101         form_toc.C \
102         form_toc.h \
103         FormUrl.C \
104         FormUrl.h \
105         form_url.C \
106         form_url.h \
107         FormVCLog.C \
108         FormVCLog.h \
109         input_validators.h \
110         input_validators.C \
111         Menubar_pimpl.C \
112         Menubar_pimpl.h \
113         RadioButtonGroup.C \
114         RadioButtonGroup.h \
115         Timeout_pimpl.C \
116         Timeout_pimpl.h \
117         Toolbar_pimpl.C \
118         Toolbar_pimpl.h \
119         xform_helpers.C \
120         xform_helpers.h
121
122 # These still have to be added. Sooner or later. ARRae-20000411
123 #       GUI_defaults.C \
124 #       GUI_initialize.C \
125 #       GUI_postlyxrc.C \
126 #       GUI_runtime.C \
127 #       GUI_applymenu.C
128
129 # for convenience only
130 updatesrc:
131         $(MAKE) -C forms updatesrc
132  
133 # just copied from old lyx repository
134 dist-hook:
135         for subdir in $(LYXDATADIRS) ; do \
136         test -d $(distdir)/$$subdir \
137         || mkdir $(distdir)/$$subdir \
138         || exit 1; \
139         chmod 777 $(distdir)/$$subdir; \
140         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
141         echo $$list ; \
142         for fil in $$list ; do \
143         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
144         done ; \
145         done