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