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