]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/Makefile.am
Added lyx-func tabular-feature for menu structure.
[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 libxforms_la_SOURCES = \
13         Dialogs.C \
14         FormCitation.C \
15         FormCitation.h \
16         form_citation.C \
17         form_citation.h \
18         FormCopyright.C \
19         FormCopyright.h \
20         form_copyright.C \
21         form_copyright.h \
22         FormPreferences.C \
23         FormPreferences.h \
24         form_preferences.C \
25         form_preferences.h \
26         FormPrint.C \
27         FormPrint.h \
28         form_print.C \
29         form_print.h \
30         FormTabular.C \
31         FormTabular.h \
32         form_tabular.C \
33         form_tabular.h \
34         FormUrl.C \
35         FormUrl.h \
36         form_url.C \
37         form_url.h \
38         Toolbar_pimpl.C \
39         Toolbar_pimpl.h \
40         Menubar_pimpl.C \
41         Menubar_pimpl.h \
42         input_validators.h \
43         input_validators.c \
44         xform_macros.h
45
46 # These still have to be added. Sooner or later. ARRae-20000411
47 #       GUI_defaults.C \
48 #       GUI_initialize.C \
49 #       GUI_postlyxrc.C \
50 #       GUI_runtime.C \
51 #       GUI_applymenu.C
52
53 # just copied from old lyx repository
54 dist-hook:
55         for subdir in $(LYXDATADIRS) ; do \
56         test -d $(distdir)/$$subdir \
57         || mkdir $(distdir)/$$subdir \
58         || exit 1; \
59         chmod 777 $(distdir)/$$subdir; \
60         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
61         echo $$list ; \
62         for fil in $$list ; do \
63         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
64         done ; \
65         done