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