]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Makefile.am
More pref work 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         FormTabularCreate.C \
67         FormTabularCreate.h \
68         form_tabular_create.C \
69         form_tabular_create.h \
70         FormToc.C \
71         FormToc.h \
72         form_toc.C \
73         form_toc.h \
74         FormUrl.C \
75         FormUrl.h \
76         form_url.C \
77         form_url.h \
78         input_validators.h \
79         input_validators.c \
80         Menubar_pimpl.C \
81         Menubar_pimpl.h \
82         RadioButtonGroup.C \
83         RadioButtonGroup.h \
84         Toolbar_pimpl.C \
85         Toolbar_pimpl.h \
86         xform_macros.h \
87         xform_helpers.C \
88         xform_helpers.h
89
90 # These still have to be added. Sooner or later. ARRae-20000411
91 #       GUI_defaults.C \
92 #       GUI_initialize.C \
93 #       GUI_postlyxrc.C \
94 #       GUI_runtime.C \
95 #       GUI_applymenu.C
96
97 # just copied from old lyx repository
98 dist-hook:
99         for subdir in $(LYXDATADIRS) ; do \
100         test -d $(distdir)/$$subdir \
101         || mkdir $(distdir)/$$subdir \
102         || exit 1; \
103         chmod 777 $(distdir)/$$subdir; \
104         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
105         echo $$list ; \
106         for fil in $$list ; do \
107         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
108         done ; \
109         done