2000-07-24 22:42:35 +00:00
|
|
|
AUTOMAKE_OPTIONS = foreign 1.4
|
|
|
|
DISTCLEANFILES= *.orig *.rej *~ *.bak core
|
|
|
|
MAINTAINERCLEANFILES = $(srcdir)/Makefile.in
|
2000-07-26 15:16:54 +00:00
|
|
|
noinst_LTLIBRARIES = libgnome.la
|
2000-07-24 22:42:35 +00:00
|
|
|
INCLUDES = ${FRONTEND_INCLUDES} -I${top_srcdir}/src/ \
|
|
|
|
-I${top_srcdir}/src/frontends/ \
|
|
|
|
${SIGC_CFLAGS}
|
|
|
|
LIBS=
|
|
|
|
LDFLAGS=
|
|
|
|
LYXDATADIRS =
|
|
|
|
ETAGS_ARGS = --lang=c++
|
2000-07-26 15:16:54 +00:00
|
|
|
libgnome_la_SOURCES = \
|
2000-07-24 22:42:35 +00:00
|
|
|
Dialogs.C \
|
|
|
|
FormCopyright.C \
|
2000-07-26 15:16:54 +00:00
|
|
|
FormCopyright.h \
|
|
|
|
Menubar_pimpl.C \
|
|
|
|
Menubar_pimpl.h \
|
|
|
|
Toolbar_pimpl.C \
|
|
|
|
Toolbar_pimpl.h
|
2000-07-24 22:42:35 +00:00
|
|
|
|
|
|
|
# These still have to be added. Sooner or later. ARRae-20000411
|
|
|
|
# GUI_defaults.C \
|
|
|
|
# GUI_initialize.C \
|
|
|
|
# GUI_postlyxrc.C \
|
|
|
|
# GUI_runtime.C \
|
|
|
|
# GUI_applymenu.C
|
|
|
|
|
|
|
|
# just copied from old lyx repository
|
|
|
|
dist-hook:
|
|
|
|
for subdir in $(LYXDATADIRS) ; do \
|
|
|
|
test -d $(distdir)/$$subdir \
|
|
|
|
|| mkdir $(distdir)/$$subdir \
|
|
|
|
|| exit 1; \
|
|
|
|
chmod 777 $(distdir)/$$subdir; \
|
|
|
|
list=`(cd $(srcdir)/$$subdir && ls -1 | grep -v CVS)`; \
|
|
|
|
echo $$list ; \
|
|
|
|
for fil in $$list ; do \
|
|
|
|
cp -p $(srcdir)/$$subdir/$$fil $(distdir)/$$subdir ; \
|
|
|
|
done ; \
|
|
|
|
done
|