]> git.lyx.org Git - lyx.git/blob - src/frontends/gnome/Makefile.am
Mathed fix from Dekel, GNOME patch from Marko, language-code from Garst
[lyx.git] / src / frontends / gnome / Makefile.am
1 AUTOMAKE_OPTIONS = foreign 1.4
2 DISTCLEANFILES= *.orig *.rej *~ *.bak core
3 MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
4 noinst_LTLIBRARIES = libgnome.la
5 INCLUDES = ${FRONTEND_INCLUDES} -I${top_srcdir}/src/ \
6         -I${top_srcdir}/src/frontends/ -I${top_srcdir}/src/frontends/xforms \
7         ${SIGC_CFLAGS}
8 libgnome_la_OBJADD = \
9         ../xforms/FormBase.lo \
10         ../xforms/FormCitation.lo \
11         ../xforms/form_citation.lo \
12         ../xforms/FormCommand.lo \
13         ../xforms/FormDocument.lo \
14         ../xforms/form_document.lo \
15         ../xforms/FormError.lo \
16         ../xforms/form_error.lo \
17         ../xforms/FormGraphics.lo \
18         ../xforms/form_graphics.lo \
19         ../xforms/FormIndex.lo \
20         ../xforms/form_index.lo \
21         ../xforms/FormPreferences.lo \
22         ../xforms/form_preferences.lo \
23         ../xforms/FormRef.lo \
24         ../xforms/form_ref.lo \
25         ../xforms/FormTabular.lo \
26         ../xforms/form_tabular.lo \
27         ../xforms/FormToc.lo \
28         ../xforms/form_toc.lo \
29         ../xforms/input_validators.lo \
30         ../xforms/RadioButtonGroup.lo \
31         ../xforms/Toolbar_pimpl.lo
32 LIBS= 
33 LDFLAGS= $(libgnome_la_OBJADD)
34 LYXDATADIRS = 
35 #ETAGS_ARGS = --lang=c++
36 libgnome_la_SOURCES = \
37         Dialogs.C \
38         GUIRunTime.C \
39         FormCitation.C \
40         FormCitation.h \
41         FormCopyright.C \
42         FormCopyright.h \
43         FormPrint.C \
44         FormPrint.h \
45         FormUrl.C \
46         FormUrl.h \
47         FormIndex.C \
48         FormIndex.h \
49         FormToc.C \
50         FormToc.h \
51         Menubar_pimpl.C \
52         Menubar_pimpl.h \
53         mainapp.C \
54         mainapp.h \
55         support.c \
56         support.h \
57         diaprint_callbacks.c \
58         diaprint_callbacks.h \
59         diaprint_interface.c \
60         diaprint_interface.h \
61         diainserturl_callbacks.c  \
62         diainserturl_interface.c  \
63         diainserturl_callbacks.h \
64         diainserturl_interface.h \
65         diainsertindex_callbacks.c  \
66         diainsertindex_interface.c  \
67         diainsertindex_callbacks.h \
68         diainsertindex_interface.h \
69         diatoc_callbacks.c  \
70         diatoc_interface.c  \
71         diatoc_callbacks.h \
72         diatoc_interface.h \
73         diainsertcitation_interface.c \
74         diainsertcitation_interface.h \
75         diainsertcitation_callbacks.c \
76         diainsertcitation_callbacks.h \
77         pixbutton.h
78
79 # These still have to be added. Sooner or later. ARRae-20000411
80 #       GUI_defaults.C \
81 #       GUI_initialize.C \
82 #       GUI_postlyxrc.C \
83 #       GUI_runtime.C \
84 #       GUI_applymenu.C
85
86 # just copied from old lyx repository
87 dist-hook:
88         for subdir in $(LYXDATADIRS) ; do \
89         test -d $(distdir)/$$subdir \
90         || mkdir $(distdir)/$$subdir \
91         || exit 1; \
92         chmod 777 $(distdir)/$$subdir; \
93         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
94         echo $$list ; \
95         for fil in $$list ; do \
96         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
97         done ; \
98         done