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