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