2002-03-13 18:24:44 +00:00
|
|
|
include $(top_srcdir)/config/common.am
|
|
|
|
|
2003-01-13 23:17:33 +00:00
|
|
|
DISTCLEANFILES += lyx.1 config.status config.cache config.log
|
2002-03-13 18:24:44 +00:00
|
|
|
|
|
|
|
MAINTAINERCLEANFILES += $(srcdir)/aclocal.m4 \
|
2002-12-18 09:30:00 +00:00
|
|
|
$(srcdir)/configure \
|
2002-03-20 20:23:35 +00:00
|
|
|
$(srcdir)/acinclude.m4
|
2002-03-13 18:24:44 +00:00
|
|
|
|
2003-05-07 16:22:01 +00:00
|
|
|
DIST_SUBDIRS = config development intl po boost src sourcedoc lib
|
|
|
|
|
|
|
|
if USE_INCLUDED_BOOST
|
2002-12-18 15:04:47 +00:00
|
|
|
SUBDIRS = config development intl po boost src sourcedoc lib
|
2003-05-07 16:22:01 +00:00
|
|
|
else
|
|
|
|
SUBDIRS = config development intl po src sourcedoc lib
|
|
|
|
endif
|
1999-10-13 21:39:32 +00:00
|
|
|
|
2001-06-15 14:43:54 +00:00
|
|
|
EXTRA_DIST = ANNOUNCE INSTALL.OS2 INSTALL.autoconf README.OS2 \
|
2002-12-18 15:04:47 +00:00
|
|
|
UPGRADING lyx.man autogen.sh images
|
2001-07-24 23:41:31 +00:00
|
|
|
|
2002-04-16 09:11:40 +00:00
|
|
|
# Hack so that the targets that use tar will also work with automake 1.4
|
|
|
|
AMTAR ?= $(TAR)
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
man_MANS = lyx.1
|
2000-06-27 15:24:11 +00:00
|
|
|
|
|
|
|
## Needed by bindist
|
2002-04-07 15:35:07 +00:00
|
|
|
bindistdir=$(PWD)/lyxbin
|
2000-06-27 15:24:11 +00:00
|
|
|
bindistfile=$(PACKAGE)-$(VERSION)-bin.tar.gz
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
lyx.1:
|
|
|
|
cp -p $(srcdir)/lyx.man lyx.1
|
1999-10-13 21:39:32 +00:00
|
|
|
|
|
|
|
dist-hook:
|
2002-03-31 11:49:57 +00:00
|
|
|
cd $(distdir) ; \
|
1999-10-13 21:39:32 +00:00
|
|
|
rm -rf `find images -name \*CVS\*`
|
1999-10-16 14:42:03 +00:00
|
|
|
|
|
|
|
rpmdist: dist
|
2003-02-04 18:13:33 +00:00
|
|
|
ln -s $(srcdir)/lib/images/lyx.xpm . ; \
|
2003-01-30 12:40:01 +00:00
|
|
|
if [ -z "`type -path rpmbuild`" ]; \
|
|
|
|
then \
|
|
|
|
RPMBUILD=rpm; \
|
|
|
|
else \
|
|
|
|
RPMBUILD=rpmbuild; \
|
|
|
|
fi; $$RPMBUILD -ta $(PACKAGE)-$(VERSION).tar.gz ; saved_status=$$?; \
|
2000-08-02 09:33:15 +00:00
|
|
|
rm lyx.xpm; exit $$saved_status
|
1999-11-04 01:40:20 +00:00
|
|
|
|
2000-06-27 15:24:11 +00:00
|
|
|
bindist:
|
2002-04-07 15:35:07 +00:00
|
|
|
rm -f $(bindistfile)
|
|
|
|
$(MAKE) $(AM_MAKEFLAGS) DESTDIR=$(bindistdir) install-strip
|
|
|
|
if test -f $(top_srcdir)/README.bin ; then \
|
|
|
|
$(INSTALL) $(top_srcdir)/README.bin \
|
|
|
|
$(bindistdir)$(prefix)/README.bin ; \
|
|
|
|
fi
|
|
|
|
(cd $(bindistdir)$(prefix) ; $(AMTAR) cf - . ) | \
|
|
|
|
GZIP=$(GZIP_ENV) gzip > $(bindistfile)
|
|
|
|
-chmod -R a+w $(bindistdir) > /dev/null 2>&1 ; rm -rf $(bindistdir)
|
2002-04-08 09:42:58 +00:00
|
|
|
@if test -f $(top_srcdir)/README.bin ; then \
|
2002-04-07 15:35:07 +00:00
|
|
|
echo "*** Did you remember to check the contents of README.bin?" ; \
|
|
|
|
else \
|
|
|
|
echo "*** WARNING: You did not provide a README.bin file." ; \
|
|
|
|
echo "*** Please make one now from the example file" ; \
|
|
|
|
echo "*** development/tools/README.bin.example" ; \
|
|
|
|
fi
|
|
|
|
@echo "*** It should mention any problem concerning your binary"
|
|
|
|
@echo "*** distribution and refer to *you* in case of problem."
|
|
|
|
@echo "*** $(bindistfile) has been created."
|
|
|
|
|
2003-01-18 22:42:57 +00:00
|
|
|
doxydoc:
|
|
|
|
cd sourcedoc; make doxydoc
|
2002-04-26 10:32:23 +00:00
|
|
|
|
2000-11-15 03:22:08 +00:00
|
|
|
lgbtags:
|
|
|
|
etags --totals=yes --recurse=yes -o TAGS $(top_srcdir)/*
|
2001-02-12 14:09:09 +00:00
|
|
|
|
2003-01-18 22:42:57 +00:00
|
|
|
.PHONY: doxydoc
|