Implement CLOCK_MONOTONIC using getnanouptime(), which in DragonFly is
[dragonfly.git] / contrib / ncurses / dist.mk
1 # $Id: dist.mk,v 1.224 2000/10/09 22:47:15 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 #
8 SHELL = /bin/sh
9
10 # These define the major/minor/patch versions of ncurses.
11 NCURSES_MAJOR = 5
12 NCURSES_MINOR = 1
13 NCURSES_PATCH = 20001009
14
15 # We don't append the patch to the version, since this only applies to releases
16 VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
17
18 DUMP    = lynx -dump
19 DUMP2   = $(DUMP) -nolist
20
21 GNATHTML= `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).
28 MAN2HTML= man2html -botm=6 -topm=6 -cgiurl '$$title.$$section$$subsection.html'
29
30 ALL     = ANNOUNCE doc/html/announce.html doc/ncurses-intro.doc doc/hackguide.doc manhtml adahtml
31
32 all :   $(ALL)
33
34 dist:   $(ALL)
35         (cd ..;  tar cvf ncurses-$(VERSION).tar `sed <ncurses-$(VERSION)/MANIFEST 's/^./ncurses-$(VERSION)/'`;  gzip ncurses-$(VERSION).tar)
36
37 distclean:
38         rm -f $(ALL) subst.tmp subst.sed MANIFEST.tmp
39
40 # Don't mess with announce.html.in unless you have lynx available!
41 doc/html/announce.html: announce.html.in
42         sed 's,@VERSION@,$(VERSION),' <announce.html.in > $@
43
44 ANNOUNCE : doc/html/announce.html
45         $(DUMP) doc/html/announce.html > $@
46
47 doc/ncurses-intro.doc: doc/html/ncurses-intro.html
48         $(DUMP2) doc/html/ncurses-intro.html > $@
49 doc/hackguide.doc: doc/html/hackguide.html
50         $(DUMP2) doc/html/hackguide.html > $@
51
52 # Note that this rule assumes the manpages were installed - it does not use
53 # the copies in the build tree except to get the list of names.
54 manhtml: 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         @sort < subst.tmp | uniq > subst.sed
67         @rm -f subst.tmp
68         @for f in man/*.[0-9]* ; do \
69            m=`basename $$f` ;\
70            g=$${m}.html ;\
71            if [ -f doc/html/$$g ]; then chmod +w doc/html/$$g; fi;\
72            echo "Converting $$m to HTML" ;\
73            man $$f | tr '\255' '-' | $(MAN2HTML) | \
74            sed -f subst.sed |\
75            sed -e 's/"curses.3x.html"/"ncurses.3x.html"/g' \
76            > doc/html/man/$$g ;\
77         done
78         @rm -f subst.sed
79         @sed -e "\%./doc/html/man/%d" < MANIFEST > MANIFEST.tmp
80         @find ./doc/html/man -type f -print >> MANIFEST.tmp
81         @chmod u+w MANIFEST
82         @sort -u < MANIFEST.tmp > MANIFEST
83         @rm -f MANIFEST.tmp
84
85 #
86 # Please note that this target can only be properly built if the build of the
87 # Ada95 subdir has been done.  The reason is, that the gnathtml tool uses the
88 # .ali files generated by the Ada95 compiler during the build process.  These
89 # .ali files contain cross referencing information required by gnathtml.
90 adahtml: MANIFEST
91         if [ ! -z "$(GNATHTML)" ]; then \
92           (cd ./Ada95/gen ; make html) ;\
93           sed -e "\%./doc/html/ada/%d" < MANIFEST > MANIFEST.tmp ;\
94           find ./doc/html/ada -type f -print >> MANIFEST.tmp ;\
95           sort -u < MANIFEST.tmp > MANIFEST ;\
96           rm -f MANIFEST.tmp ;\
97         fi
98
99 # Prepare distribution for version control
100 vcprepare:
101         find . -type d -exec mkdir {}/RCS \;
102
103 # Write-lock almost all files not under version control.
104 ADA_EXCEPTIONS=$(shell eval 'a="\\\\\|";for x in Ada95/gen/terminal*.m4; do echo -n $${a}Ada95/ada_include/`basename $${x} .m4`; done')
105 EXCEPTIONS = 'announce.html$\\|ANNOUNCE\\|misc/.*\\.doc\\|man/terminfo.5\\|lib_gen.c'$(ADA_EXCEPTIONS)
106 writelock:
107         for x in `grep -v $(EXCEPTIONS) MANIFEST`; do if [ ! -f `dirname $$x`/RCS/`basename $$x`,v ]; then chmod a-w $${x}; fi; done
108
109 # This only works on a clean source tree, of course.
110 MANIFEST:
111         -rm -f $@
112         touch $@
113         find . -type f -print |sort | fgrep -v .lsm |fgrep -v .spec >$@
114
115 TAGS:
116         etags */*.[ch]
117
118 # Makefile ends here