]> git.lyx.org Git - features.git/blob - src/frontends/xforms/Makefile.am
formskdepatchthingie
[features.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         FormPreferences.C \
72         FormPreferences.h \
73         form_preferences.C \
74         form_preferences.h \
75         FormPrint.C \
76         FormPrint.h \
77         form_print.C \
78         form_print.h \
79         FormRef.C \
80         FormRef.h \
81         form_ref.C \
82         form_ref.h \
83         FormSplash.C \
84         FormSplash.h \
85         form_splash.C \
86         form_splash.h \
87         FormTabular.C \
88         FormTabular.h \
89         form_tabular.C \
90         form_tabular.h \
91         FormTabularCreate.C \
92         FormTabularCreate.h \
93         form_tabular_create.C \
94         form_tabular_create.h \
95         FormToc.C \
96         FormToc.h \
97         form_toc.C \
98         form_toc.h \
99         FormUrl.C \
100         FormUrl.h \
101         form_url.C \
102         form_url.h \
103         FormVCLog.C \
104         FormVCLog.h \
105         input_validators.h \
106         input_validators.C \
107         Menubar_pimpl.C \
108         Menubar_pimpl.h \
109         RadioButtonGroup.C \
110         RadioButtonGroup.h \
111         Timeout_pimpl.C \
112         Timeout_pimpl.h \
113         Toolbar_pimpl.C \
114         Toolbar_pimpl.h \
115         xform_helpers.C \
116         xform_helpers.h
117
118 # These still have to be added. Sooner or later. ARRae-20000411
119 #       GUI_defaults.C \
120 #       GUI_initialize.C \
121 #       GUI_postlyxrc.C \
122 #       GUI_runtime.C \
123 #       GUI_applymenu.C
124
125 # for convenience only
126 updatesrc:
127         $(MAKE) -C forms updatesrc
128  
129 # just copied from old lyx repository
130 dist-hook:
131         for subdir in $(LYXDATADIRS) ; do \
132         test -d $(distdir)/$$subdir \
133         || mkdir $(distdir)/$$subdir \
134         || exit 1; \
135         chmod 777 $(distdir)/$$subdir; \
136         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
137         echo $$list ; \
138         for fil in $$list ; do \
139         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
140         done ; \
141         done