]> git.lyx.org Git - lyx.git/blob - src/frontends/gnome/Makefile.am
major GUII cleanup + Baruchs patch + Angus's patch + removed a couple of generated...
[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/ \
7         ${SIGC_CFLAGS}
8 LIBS=
9 LDFLAGS=
10 LYXDATADIRS = 
11 ETAGS_ARGS = --lang=c++
12 libgnome_la_SOURCES = \
13         Dialogs.C \
14         FormCopyright.C \
15         FormCopyright.h \
16         Menubar_pimpl.C \
17         Menubar_pimpl.h \
18         Toolbar_pimpl.C \
19         Toolbar_pimpl.h \
20         mainapp.C \
21         mainapp.h
22
23 # These still have to be added. Sooner or later. ARRae-20000411
24 #       GUI_defaults.C \
25 #       GUI_initialize.C \
26 #       GUI_postlyxrc.C \
27 #       GUI_runtime.C \
28 #       GUI_applymenu.C
29
30 # just copied from old lyx repository
31 dist-hook:
32         for subdir in $(LYXDATADIRS) ; do \
33         test -d $(distdir)/$$subdir \
34         || mkdir $(distdir)/$$subdir \
35         || exit 1; \
36         chmod 777 $(distdir)/$$subdir; \
37         list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
38         echo $$list ; \
39         for fil in $$list ; do \
40         cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
41         done ; \
42         done