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