]> git.lyx.org Git - features.git/blob - src/frontends/xforms/Makefile.am
Moving to have the Tabular-Layout-Form tabbed and in the GUI-indep directory.
[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         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         input_validators.h \
35         input_validators.c \
36         xform_macros.h
37
38 # These still have to be added. Sooner or later. ARRae-20000411
39 #       GUI_defaults.C \
40 #       GUI_initialize.C \
41 #       GUI_postlyxrc.C \
42 #       GUI_runtime.C \
43 #       GUI_applymenu.C
44
45 # just copied from old lyx repository
46 dist-hook:
47         for subdir in $(LYXDATADIRS) ; do \
48         test -d $(distdir)/$$subdir \
49         || mkdir $(distdir)/$$subdir \
50         || exit 1; \
51         chmod 777 $(distdir)/$$subdir; \
52         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
53         echo $$list ; \
54         for fil in $$list ; do \
55         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
56         done ; \
57         done