]> git.lyx.org Git - lyx.git/blob - Makefile.am
be recursive
[lyx.git] / Makefile.am
1 include $(top_srcdir)/config/common.am
2
3 DISTCLEANFILES += -r lyx.1 config.status config.cache config.log \
4         $(srcdir)/sourcedoc/*~ \
5         $(srcdir)/sourcedoc/html $(srcdir)/sourcedoc/latex \
6         $(srcdir)/sourcedoc/man $(srcdir)/sourcedoc/Doxyfile
7
8 MAINTAINERCLEANFILES += $(srcdir)/aclocal.m4 \
9         $(srcdir)/configure $(srcdir)/development/lyx.spec \
10         $(srcdir)/acinclude.m4
11
12 SUBDIRS = intl po sigc++ boost src lib
13
14 EXTRA_DIST = ANNOUNCE INSTALL.OS2 INSTALL.autoconf README.OS2 \
15         UPGRADING lyx.man acconfig.h autogen.sh \
16         config development images sourcedoc
17
18 man_MANS = lyx.1
19
20 ## Needed by bindist
21 bindistdir=lyxbin
22 bindistfile=$(PACKAGE)-$(VERSION)-bin.tar.gz
23
24 lyx.1:
25         cp -p $(srcdir)/lyx.man lyx.1
26
27 dist-hook:
28         cd $(distdir) ; rm -rf `find config -name \*CVS\*` ; \
29         rm -rf `find development -name \*CVS\*` ; \
30         rm -rf `find images -name \*CVS\*`
31
32 rpmdist: dist
33         ln -s lib/images/lyx.xpm . ; \
34         rpm -ta ${PACKAGE}-${VERSION}.tar.gz ; saved_status=$$?; \
35         rm lyx.xpm; exit $$saved_status
36
37
38 bindist:
39         mkdir $(bindistdir)
40         if test -f README.bin ; then \
41           $(INSTALL) README.bin  $(bindistdir)/README.bin ; \
42         fi 
43         $(MAKE) $(AM_MAKEFLAGS) install-strip prefix=`pwd`/$(bindistdir)
44         (cd $(bindistdir) ; tar cf - .) | gzip >$(bindistfile)
45         rm -rf $(bindistdir)
46         @if test -f README.bin ; then \
47           echo "*** Did you remember to check the contents of README.bin?" ; \
48         else \
49           echo "*** WARNING: You did not provide a README.bin file." ; \
50           echo "*** Please make one now from the example file" ; \
51           echo "***   development/tools/README.bin.example" ; \
52         fi  
53         @echo "*** It should mention any problem concerning your binary"
54         @echo "*** distribution and refer to *you* in case of problem."
55         @echo "*** $(bindistfile) has been created."
56
57
58 doxydoc: sourcedoc/Doxyfile
59         cd sourcedoc; \
60         doxygen ./Doxyfile
61
62 lgbtags:
63         etags --totals=yes --recurse=yes -o TAGS $(top_srcdir)/*
64
65 .PHONY: sourcedoc