1# $Id: dist.mk,v 1.306 2002/06/15 17:13:40 tom Exp $ 2# Makefile for creating ncurses distributions. 3# 4# This only needs to be used directly as a makefile by developers, but 5# configure mines the current version number out of here. To move 6# to a new version number, just edit this file and run configure. 7# 8SHELL = /bin/sh 9 10# These define the major/minor/patch versions of ncurses. 11NCURSES_MAJOR = 5 12NCURSES_MINOR = 2 13NCURSES_PATCH = 20020615 14 15# We don't append the patch to the version, since this only applies to releases 16VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR) 17 18DUMP = lynx -dump 19DUMP2 = $(DUMP) -nolist 20 21GNATHTML= `type -p gnathtml || type -p gnathtml.pl` 22 23# man2html 3.0.1 is a Perl script which assumes that pages are fixed size. 24# Not all man programs agree with this assumption; some use half-spacing, which 25# has the effect of lengthening the text portion of the page -- so man2html 26# would remove some text. The man program on Redhat 6.1 appears to work with 27# man2html if we set the top/bottom margins to 6 (the default is 7). 28MAN2HTML= man2html -botm=6 -topm=6 -cgiurl '$$title.$$section$$subsection.html' 29 30ALL = ANNOUNCE doc/html/announce.html doc/ncurses-intro.doc doc/hackguide.doc manhtml adahtml 31 32all : $(ALL) 33 34dist: $(ALL) 35 (cd ..; tar cvf ncurses-$(VERSION).tar `sed <ncurses-$(VERSION)/MANIFEST 's/^./ncurses-$(VERSION)/'`; gzip ncurses-$(VERSION).tar) 36 37distclean: 38 rm -f $(ALL) subst.tmp subst.sed MANIFEST.tmp 39 40# Don't mess with announce.html.in unless you have lynx available! 41doc/html/announce.html: announce.html.in 42 sed 's,@VERSION@,$(VERSION),' <announce.html.in > $@ 43 44ANNOUNCE : doc/html/announce.html 45 $(DUMP) doc/html/announce.html > $@ 46 47doc/ncurses-intro.doc: doc/html/ncurses-intro.html 48 $(DUMP2) doc/html/ncurses-intro.html > $@ 49doc/hackguide.doc: doc/html/hackguide.html 50 $(DUMP2) doc/html/hackguide.html > $@ 51 52MANPROG = tbl | nroff -man 53 54manhtml: MANIFEST 55 @rm -f doc/html/man/*.html 56 @mkdir -p doc/html/man 57 @rm -f subst.tmp ; 58 @for f in man/*.[0-9]*; do \ 59 m=`basename $$f` ;\ 60 x=`echo $$m | awk -F. '{print $$2;}'` ;\ 61 xu=`echo $$x | dd conv=ucase 2>/dev/null` ;\ 62 if [ "$${x}" != "$${xu}" ]; then \ 63 echo "s/$${xu}/$${x}/g" >> subst.tmp ;\ 64 fi ;\ 65 done 66 # change some things to make weblint happy: 67 @echo 's/<B>/<STRONG>/g' >> subst.tmp 68 @echo 's/<\/B>/<\/STRONG>/g' >> subst.tmp 69 @echo 's/<I>/<EM>/g' >> subst.tmp 70 @echo 's/<\/I>/<\/EM>/g' >> subst.tmp 71 @echo 's/<\/TITLE>/<\/TITLE><link rev=made href="mailto:bug-ncurses@gnu.org">/' >> subst.tmp 72 @sort < subst.tmp | uniq > subst.sed 73 @rm -f subst.tmp 74 @for f in man/*.[0-9]* ; do \ 75 m=`basename $$f` ;\ 76 T=`egrep '^.TH' $$f|sed -e 's/^.TH //' -e s'/"//g' -e 's/[ ]\+$$//'` ; \ 77 g=$${m}.html ;\ 78 if [ -f doc/html/$$g ]; then chmod +w doc/html/$$g; fi;\ 79 echo "Converting $$m to HTML" ;\ 80 echo '<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">' > doc/html/man/$$g ;\ 81 echo '<!-- ' >> doc/html/man/$$g ;\ 82 egrep '^.\\"[^#]' $$f | \ 83 sed -e 's/\$$/@/g' \ 84 -e 's/^.../ */' \ 85 -e 's/</\</g' \ 86 -e 's/>/\>/g' \ 87 >> doc/html/man/$$g ;\ 88 echo '-->' >> doc/html/man/$$g ;\ 89 man/edit_man.sh editing /usr/man man $$f | $(MANPROG) | tr '\255' '-' | $(MAN2HTML) -title "$$T" | \ 90 sed -f subst.sed |\ 91 sed -e 's/"curses.3x.html"/"ncurses.3x.html"/g' \ 92 >> doc/html/man/$$g ;\ 93 done 94 @rm -f subst.sed 95 @sed -e "\%./doc/html/man/%d" < MANIFEST > MANIFEST.tmp 96 @find ./doc/html/man -type f -print >> MANIFEST.tmp 97 @chmod u+w MANIFEST 98 @sort -u < MANIFEST.tmp > MANIFEST 99 @rm -f MANIFEST.tmp 100 101# 102# Please note that this target can only be properly built if the build of the 103# Ada95 subdir has been done. The reason is, that the gnathtml tool uses the 104# .ali files generated by the Ada95 compiler during the build process. These 105# .ali files contain cross referencing information required by gnathtml. 106adahtml: MANIFEST 107 if [ ! -z "$(GNATHTML)" ]; then \ 108 (cd ./Ada95/gen ; make html) ;\ 109 sed -e "\%./doc/html/ada/%d" < MANIFEST > MANIFEST.tmp ;\ 110 find ./doc/html/ada -type f -print >> MANIFEST.tmp ;\ 111 sort -u < MANIFEST.tmp > MANIFEST ;\ 112 rm -f MANIFEST.tmp ;\ 113 fi 114 115# Prepare distribution for version control 116vcprepare: 117 find . -type d -exec mkdir {}/RCS \; 118 119# Write-lock almost all files not under version control. 120ADA_EXCEPTIONS=$(shell eval 'a="\\\\\|";for x in Ada95/gen/terminal*.m4; do echo -n $${a}Ada95/ada_include/`basename $${x} .m4`; done') 121EXCEPTIONS = 'announce.html$\\|ANNOUNCE\\|misc/.*\\.doc\\|man/terminfo.5\\|lib_gen.c'$(ADA_EXCEPTIONS) 122writelock: 123 for x in `grep -v $(EXCEPTIONS) MANIFEST`; do if [ ! -f `dirname $$x`/RCS/`basename $$x`,v ]; then chmod a-w $${x}; fi; done 124 125# This only works on a clean source tree, of course. 126MANIFEST: 127 -rm -f $@ 128 touch $@ 129 find . -type f -print |sort | fgrep -v .lsm |fgrep -v .spec >$@ 130 131TAGS: 132 etags */*.[ch] 133 134# Makefile ends here 135