]> git.lyx.org Git - features.git/blob - src/frontends/xforms/Makefile.am
31a8a2999a537ff92dd0a278d97e7b1bef093710
[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         FormPreferences.C \
46         FormPreferences.h \
47         form_preferences.C \
48         form_preferences.h \
49         FormPrint.C \
50         FormPrint.h \
51         form_print.C \
52         form_print.h \
53         FormRef.C \
54         FormRef.h \
55         form_ref.C \
56         form_ref.h \
57         FormTabular.C \
58         FormTabular.h \
59         form_tabular.C \
60         form_tabular.h \
61         FormToc.C \
62         FormToc.h \
63         form_toc.C \
64         form_toc.h \
65         FormUrl.C \
66         FormUrl.h \
67         form_url.C \
68         form_url.h \
69         input_validators.h \
70         input_validators.c \
71         Menubar_pimpl.C \
72         Menubar_pimpl.h \
73         RadioButtonGroup.C \
74         RadioButtonGroup.h \
75         Toolbar_pimpl.C \
76         Toolbar_pimpl.h \
77         xform_macros.h
78
79 # These still have to be added. Sooner or later. ARRae-20000411
80 #       GUI_defaults.C \
81 #       GUI_initialize.C \
82 #       GUI_postlyxrc.C \
83 #       GUI_runtime.C \
84 #       GUI_applymenu.C
85
86 # just copied from old lyx repository
87 dist-hook:
88         for subdir in $(LYXDATADIRS) ; do \
89         test -d $(distdir)/$$subdir \
90         || mkdir $(distdir)/$$subdir \
91         || exit 1; \
92         chmod 777 $(distdir)/$$subdir; \
93         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
94         echo $$list ; \
95         for fil in $$list ; do \
96         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
97         done ; \
98         done