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