]> git.lyx.org Git - features.git/blob - src/frontends/xforms/Makefile.am
Changed KDE FormIndex to use qtarch generated dialog, added FromParagraph
[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 INCLUDES = -I${top_srcdir}/src/ \
6         -I${top_srcdir}/src/frontends/ \
7         ${SIGC_CFLAGS}
8 LIBS=
9 LDFLAGS=
10 LYXDATADIRS = forms
11 ETAGS_ARGS = --lang=c++
12 # Alphabetical order please.  It makes it easier to figure out what's missing. 
13 libxforms_la_SOURCES = \
14         ButtonController.h \
15         Dialogs.C \
16         GUIRunTime.C \
17         FormBase.C \
18         FormBase.h \
19         FormCitation.C \
20         FormCitation.h \
21         form_citation.C \
22         form_citation.h \
23         FormCommand.C \
24         FormCommand.h \
25         FormCopyright.C \
26         FormCopyright.h \
27         form_copyright.C \
28         form_copyright.h \
29         FormDocument.C \
30         FormDocument.h \
31         form_document.C \
32         form_document.h \
33         FormError.C \
34         FormError.h \
35         form_error.C \
36         form_error.h \
37         FormGraphics.C \
38         FormGraphics.h \
39         form_graphics.C \
40         form_graphics.h \
41         FormIndex.C \
42         FormIndex.h \
43         form_index.C \
44         form_index.h \
45         FormParagraph.C \
46         FormParagraph.h \
47         form_paragraph.C \
48         form_paragraph.h \
49         FormPreferences.C \
50         FormPreferences.h \
51         form_preferences.C \
52         form_preferences.h \
53         FormPrint.C \
54         FormPrint.h \
55         form_print.C \
56         form_print.h \
57         FormRef.C \
58         FormRef.h \
59         form_ref.C \
60         form_ref.h \
61         FormTabular.C \
62         FormTabular.h \
63         form_tabular.C \
64         form_tabular.h \
65         FormToc.C \
66         FormToc.h \
67         form_toc.C \
68         form_toc.h \
69         FormUrl.C \
70         FormUrl.h \
71         form_url.C \
72         form_url.h \
73         input_validators.h \
74         input_validators.c \
75         Menubar_pimpl.C \
76         Menubar_pimpl.h \
77         RadioButtonGroup.C \
78         RadioButtonGroup.h \
79         Toolbar_pimpl.C \
80         Toolbar_pimpl.h \
81         xform_macros.h
82
83 # These still have to be added. Sooner or later. ARRae-20000411
84 #       GUI_defaults.C \
85 #       GUI_initialize.C \
86 #       GUI_postlyxrc.C \
87 #       GUI_runtime.C \
88 #       GUI_applymenu.C
89
90 # just copied from old lyx repository
91 dist-hook:
92         for subdir in $(LYXDATADIRS) ; do \
93         test -d $(distdir)/$$subdir \
94         || mkdir $(distdir)/$$subdir \
95         || exit 1; \
96         chmod 777 $(distdir)/$$subdir; \
97         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
98         echo $$list ; \
99         for fil in $$list ; do \
100         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
101         done ; \
102         done