ncursesw-morphos/dist.mk

131 lines
4.5 KiB
Makefile
Raw Normal View History

2005-10-10 02:41:57 +08:00
# $Id: dist.mk,v 1.498 2005/10/09 14:41:57 tom Exp $
1997-05-15 12:00:00 +08:00
# Makefile for creating ncurses distributions.
#
# This only needs to be used directly as a makefile by developers, but
# configure mines the current version number out of here. To move
# to a new version number, just edit this file and run configure.
#
SHELL = /bin/sh
# These define the major/minor/patch versions of ncurses.
1999-10-24 12:32:42 +08:00
NCURSES_MAJOR = 5
2005-10-10 02:41:57 +08:00
NCURSES_MINOR = 5
NCURSES_PATCH = 20051010
1997-05-15 12:00:00 +08:00
# We don't append the patch to the version, since this only applies to releases
VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
2005-10-10 02:41:57 +08:00
# The most recent html files were generated with lynx 2.8.5, configured with
# --without-manpage-renames
# on Debian/testing.
1997-05-15 12:00:00 +08:00
DUMP = lynx -dump
DUMP2 = $(DUMP) -nolist
2000-07-09 10:46:08 +08:00
GNATHTML= `type -p gnathtml || type -p gnathtml.pl`
# man2html 3.0.1 is a Perl script which assumes that pages are fixed size.
# Not all man programs agree with this assumption; some use half-spacing, which
# has the effect of lengthening the text portion of the page -- so man2html
# would remove some text. The man program on Redhat 6.1 appears to work with
2004-02-09 10:15:26 +08:00
# man2html if we set the top/bottom margins to 6 (the default is 7). Newer
# versions of 'man' on Linux leave no margin (and make it harder to sync with
# pages).
MAN2HTML= man2html -botm=0 -topm=0 -cgiurl '$$title.$$section$$subsection.html'
2000-07-09 10:46:08 +08:00
ALL = ANNOUNCE doc/html/announce.html doc/ncurses-intro.doc doc/hackguide.doc manhtml adahtml
1997-05-15 12:00:00 +08:00
all : $(ALL)
dist: $(ALL)
(cd ..; tar cvf ncurses-$(VERSION).tar `sed <ncurses-$(VERSION)/MANIFEST 's/^./ncurses-$(VERSION)/'`; gzip ncurses-$(VERSION).tar)
distclean:
2005-10-10 02:41:57 +08:00
rm -f $(ALL) subst.tmp subst.sed
1997-05-15 12:00:00 +08:00
# Don't mess with announce.html.in unless you have lynx available!
2000-07-09 10:46:08 +08:00
doc/html/announce.html: announce.html.in
sed 's,@VERSION@,$(VERSION),' <announce.html.in > $@
ANNOUNCE : doc/html/announce.html
$(DUMP) doc/html/announce.html > $@
1997-05-15 12:00:00 +08:00
2000-07-09 10:46:08 +08:00
doc/ncurses-intro.doc: doc/html/ncurses-intro.html
$(DUMP2) doc/html/ncurses-intro.html > $@
doc/hackguide.doc: doc/html/hackguide.html
$(DUMP2) doc/html/hackguide.html > $@
1997-05-15 12:00:00 +08:00
2005-10-10 02:41:57 +08:00
# This is the original command:
# MANPROG = tbl | nroff -man
#
# This happens to work for groff 1.18.1 on Debian. At some point groff's
# maintainer changed the line-length (we do not want/need that here).
#
# The distributed html files are formatted using
# configure --without-manpage-renames
MANPROG = tbl | nroff -mandoc -rLL=65n -rLT=71n -Tascii
2000-10-21 12:42:11 +08:00
2005-10-10 02:41:57 +08:00
manhtml:
2000-07-09 10:46:08 +08:00
@rm -f doc/html/man/*.html
@mkdir -p doc/html/man
@rm -f subst.tmp ;
@for f in man/*.[0-9]*; do \
m=`basename $$f` ;\
x=`echo $$m | awk -F. '{print $$2;}'` ;\
xu=`echo $$x | dd conv=ucase 2>/dev/null` ;\
if [ "$${x}" != "$${xu}" ]; then \
echo "s/$${xu}/$${x}/g" >> subst.tmp ;\
fi ;\
done
2002-10-13 11:35:53 +08:00
# change some things to make weblint happy:
@echo 's/<B>/<STRONG>/g' >> subst.tmp
@echo 's/<\/B>/<\/STRONG>/g' >> subst.tmp
@echo 's/<I>/<EM>/g' >> subst.tmp
@echo 's/<\/I>/<\/EM>/g' >> subst.tmp
2004-02-09 10:15:26 +08:00
@misc/csort < subst.tmp | uniq > subst.sed
2002-10-13 11:35:53 +08:00
@echo '/<\/TITLE>/a\' >> subst.sed
@echo '<link rev=made href="mailto:bug-ncurses@gnu.org">\' >> subst.sed
@echo '<meta http-equiv="Content-Type" content="text\/html; charset=iso-8859-1">' >> subst.sed
2000-07-09 10:46:08 +08:00
@rm -f subst.tmp
@for f in man/*.[0-9]* ; do \
m=`basename $$f` ;\
2002-10-13 11:35:53 +08:00
T=`egrep '^.TH' $$f|sed -e 's/^.TH //' -e s'/"//g' -e 's/[ ]\+$$//'` ; \
2000-07-09 10:46:08 +08:00
g=$${m}.html ;\
if [ -f doc/html/$$g ]; then chmod +w doc/html/$$g; fi;\
echo "Converting $$m to HTML" ;\
2002-10-13 11:35:53 +08:00
echo '<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">' > doc/html/man/$$g ;\
echo '<!-- ' >> doc/html/man/$$g ;\
egrep '^.\\"[^#]' $$f | \
sed -e 's/\$$/@/g' \
-e 's/^.../ */' \
-e 's/</\&lt;/g' \
-e 's/>/\&gt;/g' \
>> doc/html/man/$$g ;\
echo '-->' >> doc/html/man/$$g ;\
2005-10-10 02:41:57 +08:00
./edit_man.sh normal editing /usr/man man $$f | $(MANPROG) | tr '\255' '-' | $(MAN2HTML) -title "$$T" | \
2000-07-09 10:46:08 +08:00
sed -f subst.sed |\
sed -e 's/"curses.3x.html"/"ncurses.3x.html"/g' \
2002-10-13 11:35:53 +08:00
>> doc/html/man/$$g ;\
2000-07-09 10:46:08 +08:00
done
@rm -f subst.sed
#
# Please note that this target can only be properly built if the build of the
# Ada95 subdir has been done. The reason is, that the gnathtml tool uses the
# .ali files generated by the Ada95 compiler during the build process. These
# .ali files contain cross referencing information required by gnathtml.
2005-10-10 02:41:57 +08:00
adahtml:
2000-07-09 10:46:08 +08:00
if [ ! -z "$(GNATHTML)" ]; then \
(cd ./Ada95/gen ; make html) ;\
fi
1997-05-15 12:00:00 +08:00
1998-03-01 12:21:12 +08:00
# This only works on a clean source tree, of course.
MANIFEST:
-rm -f $@
touch $@
2004-02-09 10:15:26 +08:00
find . -type f -print |misc/csort | fgrep -v .lsm |fgrep -v .spec >$@
1998-03-01 12:21:12 +08:00
1997-05-15 12:00:00 +08:00
TAGS:
etags */*.[ch]
# Makefile ends here