]> git.lyx.org Git - lyx.git/blob - src/frontends/gnome/Makefile.am
Dekel's lyxrc.example; Angus's FormDocument; John's build-listerrors; POTFILES.in...
[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         FormPrint.C \
47         FormPrint.h \
48         FormUrl.C \
49         FormUrl.h \
50         FormIndex.C \
51         FormIndex.h \
52         FormToc.C \
53         FormToc.h \
54         Menubar_pimpl.C \
55         Menubar_pimpl.h \
56         mainapp.C \
57         mainapp.h \
58         support.c \
59         support.h \
60         diaprint_callbacks.c \
61         diaprint_callbacks.h \
62         diaprint_interface.c \
63         diaprint_interface.h \
64         diainserturl_callbacks.c  \
65         diainserturl_interface.c  \
66         diainserturl_callbacks.h \
67         diainserturl_interface.h \
68         diainsertindex_callbacks.c  \
69         diainsertindex_interface.c  \
70         diainsertindex_callbacks.h \
71         diainsertindex_interface.h \
72         diatoc_callbacks.c  \
73         diatoc_interface.c  \
74         diatoc_callbacks.h \
75         diatoc_interface.h \
76         diainsertcitation_interface.c \
77         diainsertcitation_interface.h \
78         diainsertcitation_callbacks.c \
79         diainsertcitation_callbacks.h \
80         pixbutton.h
81
82 # These still have to be added. Sooner or later. ARRae-20000411
83 #       GUI_defaults.C \
84 #       GUI_initialize.C \
85 #       GUI_postlyxrc.C \
86 #       GUI_runtime.C \
87 #       GUI_applymenu.C
88
89 # just copied from old lyx repository
90 dist-hook:
91         for subdir in $(LYXDATADIRS) ; do \
92         test -d $(distdir)/$$subdir \
93         || mkdir $(distdir)/$$subdir \
94         || exit 1; \
95         chmod 777 $(distdir)/$$subdir; \
96         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
97         echo $$list ; \
98         for fil in $$list ; do \
99         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
100         done ; \
101         done