]> git.lyx.org Git - features.git/blob - src/frontends/xforms/Makefile.am
Color patch from Angus, KDE patch from Johnm menu patch from Rob, and the usual unint...
[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         FormCitation.C \
24         FormCitation.h \
25         form_citation.C \
26         form_citation.h \
27         FormCopyright.C \
28         FormCopyright.h \
29         form_copyright.C \
30         form_copyright.h \
31         FormDocument.C \
32         FormDocument.h \
33         form_document.C \
34         form_document.h \
35         FormError.C \
36         FormError.h \
37         form_error.C \
38         form_error.h \
39         FormGraphics.C \
40         FormGraphics.h \
41         form_graphics.C \
42         form_graphics.h \
43         FormIndex.C \
44         FormIndex.h \
45         form_index.C \
46         form_index.h \
47         FormInset.C \
48         FormInset.h \
49         FormParagraph.C \
50         FormParagraph.h \
51         form_paragraph.C \
52         form_paragraph.h \
53         FormPreferences.C \
54         FormPreferences.h \
55         form_preferences.C \
56         form_preferences.h \
57         FormPrint.C \
58         FormPrint.h \
59         form_print.C \
60         form_print.h \
61         FormRef.C \
62         FormRef.h \
63         form_ref.C \
64         form_ref.h \
65         FormTabular.C \
66         FormTabular.h \
67         form_tabular.C \
68         form_tabular.h \
69         FormTabularCreate.C \
70         FormTabularCreate.h \
71         form_tabular_create.C \
72         form_tabular_create.h \
73         FormToc.C \
74         FormToc.h \
75         form_toc.C \
76         form_toc.h \
77         FormUrl.C \
78         FormUrl.h \
79         form_url.C \
80         form_url.h \
81         input_validators.h \
82         input_validators.c \
83         Menubar_pimpl.C \
84         Menubar_pimpl.h \
85         RadioButtonGroup.C \
86         RadioButtonGroup.h \
87         Toolbar_pimpl.C \
88         Toolbar_pimpl.h \
89         xform_macros.h \
90         xform_helpers.C \
91         xform_helpers.h
92
93 # These still have to be added. Sooner or later. ARRae-20000411
94 #       GUI_defaults.C \
95 #       GUI_initialize.C \
96 #       GUI_postlyxrc.C \
97 #       GUI_runtime.C \
98 #       GUI_applymenu.C
99
100 # just copied from old lyx repository
101 dist-hook:
102         for subdir in $(LYXDATADIRS) ; do \
103         test -d $(distdir)/$$subdir \
104         || mkdir $(distdir)/$$subdir \
105         || exit 1; \
106         chmod 777 $(distdir)/$$subdir; \
107         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
108         echo $$list ; \
109         for fil in $$list ; do \
110         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
111         done ; \
112         done