]> git.lyx.org Git - lyx.git/blob - src/frontends/gnome/Makefile.am
Marko's GNOME patch and Baruch's insetgraphic patch + some fixes to make all
[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/FormCitation.lo \
10         ../xforms/form_citation.lo \
11         ../xforms/FormCommand.lo \
12         ../xforms/FormDocument.lo \
13         ../xforms/form_document.lo \
14         ../xforms/FormGraphics.lo \
15         ../xforms/form_graphics.lo \
16         ../xforms/FormIndex.lo \
17         ../xforms/form_index.lo \
18         ../xforms/FormPreferences.lo \
19         ../xforms/form_preferences.lo \
20         ../xforms/FormRef.lo \
21         ../xforms/form_ref.lo \
22         ../xforms/FormTabular.lo \
23         ../xforms/form_tabular.lo \
24         ../xforms/FormToc.lo \
25         ../xforms/form_toc.lo \
26         ../xforms/input_validators.lo \
27         ../xforms/RadioButtonGroup.lo \
28         ../xforms/Toolbar_pimpl.lo
29 LIBS= 
30 LDFLAGS= $(libgnome_la_OBJADD)
31 LYXDATADIRS = 
32 #ETAGS_ARGS = --lang=c++
33 libgnome_la_SOURCES = \
34         Dialogs.C \
35         FormCopyright.C \
36         FormCopyright.h \
37         FormPrint.C \
38         FormPrint.h \
39         FormUrl.C \
40         FormUrl.h \
41         Menubar_pimpl.C \
42         Menubar_pimpl.h \
43         mainapp.C \
44         mainapp.h \
45         support.c \
46         support.h \
47         diaprint_callbacks.c \
48         diaprint_callbacks.h \
49         diaprint_interface.c \
50         diaprint_interface.h \
51         diainserturl_callbacks.c  \
52         diainserturl_interface.c  \
53         diainserturl_callbacks.h \
54         diainserturl_interface.h 
55
56 # These still have to be added. Sooner or later. ARRae-20000411
57 #       GUI_defaults.C \
58 #       GUI_initialize.C \
59 #       GUI_postlyxrc.C \
60 #       GUI_runtime.C \
61 #       GUI_applymenu.C
62
63 # just copied from old lyx repository
64 dist-hook:
65         for subdir in $(LYXDATADIRS) ; do \
66         test -d $(distdir)/$$subdir \
67         || mkdir $(distdir)/$$subdir \
68         || exit 1; \
69         chmod 777 $(distdir)/$$subdir; \
70         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
71         echo $$list ; \
72         for fil in $$list ; do \
73         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
74         done ; \
75         done