]> git.lyx.org Git - lyx.git/blob - Makefile.am
merge po files
[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) ; \
29         rm -rf `find config -name \*CVS\*` ; \
30         rm -rf `find development -name \*CVS\*` ; \
31         rm -rf `find images -name \*CVS\*`
32
33 rpmdist: dist
34         ln -s lib/images/lyx.xpm . ; \
35         rpm -ta $(PACKAGE)-$(VERSION).tar.gz ; saved_status=$$?; \
36         rm lyx.xpm; exit $$saved_status
37
38
39 bindist:
40         mkdir $(bindistdir)
41         if test -f README.bin ; then \
42           $(INSTALL) README.bin  $(bindistdir)/README.bin ; \
43         fi
44         $(MAKE) $(AM_MAKEFLAGS) install-strip prefix=`pwd`/$(bindistdir)
45         (cd $(bindistdir) ; tar cf - .) | gzip >$(bindistfile)
46         rm -rf $(bindistdir)
47         @if test -f README.bin ; then \
48           echo "*** Did you remember to check the contents of README.bin?" ; \
49         else \
50           echo "*** WARNING: You did not provide a README.bin file." ; \
51           echo "*** Please make one now from the example file" ; \
52           echo "***   development/tools/README.bin.example" ; \
53         fi
54         @echo "*** It should mention any problem concerning your binary"
55         @echo "*** distribution and refer to *you* in case of problem."
56         @echo "*** $(bindistfile) has been created."
57
58
59 doxydoc: sourcedoc/Doxyfile
60         cd sourcedoc; \
61         doxygen ./Doxyfile
62
63 lgbtags:
64         etags --totals=yes --recurse=yes -o TAGS $(top_srcdir)/*
65
66 .PHONY: sourcedoc