]> git.lyx.org Git - features.git/blob - src/frontends/xforms/Makefile.am
aab7956c2c9be95bcca06de10c221662cfa3a127
[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         FormCopyright.C \
15         FormCopyright.h \
16         form_copyright.C \
17         form_copyright.h \
18         FormPreferences.C \
19         FormPreferences.h \
20         form_preferences.C \
21         form_preferences.h \
22         FormPrint.C \
23         FormPrint.h \
24         form_print.C \
25         form_print.h \
26         input_validators.h \
27         input_validators.c \
28         xform_macros.h
29
30 # These still have to be added. Sooner or later. ARRae-20000411
31 #       GUI_defaults.C \
32 #       GUI_initialize.C \
33 #       GUI_postlyxrc.C \
34 #       GUI_runtime.C \
35 #       GUI_applymenu.C
36
37 # just copied from old lyx repository
38 dist-hook:
39         for subdir in $(LYXDATADIRS) ; do \
40         test -d $(distdir)/$$subdir \
41         || mkdir $(distdir)/$$subdir \
42         || exit 1; \
43         chmod 777 $(distdir)/$$subdir; \
44         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
45         echo $$list ; \
46         for fil in $$list ; do \
47         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
48         done ; \
49         done