]> git.lyx.org Git - lyx.git/blob - src/frontends/gnome/Makefile.am
make NEW_TABULAR default, some GUIRunTime changes
[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         GUIRunTime.C \
36         FormCopyright.C \
37         FormCopyright.h \
38         FormPrint.C \
39         FormPrint.h \
40         FormUrl.C \
41         FormUrl.h \
42         FormIndex.C \
43         FormIndex.h \
44         FormToc.C \
45         FormToc.h \
46         Menubar_pimpl.C \
47         Menubar_pimpl.h \
48         mainapp.C \
49         mainapp.h \
50         support.c \
51         support.h \
52         diaprint_callbacks.c \
53         diaprint_callbacks.h \
54         diaprint_interface.c \
55         diaprint_interface.h \
56         diainserturl_callbacks.c  \
57         diainserturl_interface.c  \
58         diainserturl_callbacks.h \
59         diainserturl_interface.h \
60         diainsertindex_callbacks.c  \
61         diainsertindex_interface.c  \
62         diainsertindex_callbacks.h \
63         diainsertindex_interface.h \
64         diatoc_callbacks.c  \
65         diatoc_interface.c  \
66         diatoc_callbacks.h \
67         diatoc_interface.h 
68
69 # These still have to be added. Sooner or later. ARRae-20000411
70 #       GUI_defaults.C \
71 #       GUI_initialize.C \
72 #       GUI_postlyxrc.C \
73 #       GUI_runtime.C \
74 #       GUI_applymenu.C
75
76 # just copied from old lyx repository
77 dist-hook:
78         for subdir in $(LYXDATADIRS) ; do \
79         test -d $(distdir)/$$subdir \
80         || mkdir $(distdir)/$$subdir \
81         || exit 1; \
82         chmod 777 $(distdir)/$$subdir; \
83         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
84         echo $$list ; \
85         for fil in $$list ; do \
86         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
87         done ; \
88         done