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