doc/en/Makefile
Nik Clayton 781f8c26cd Remove index.html, replace with index.sgml. Update the Makefile.
Made some changes when creating index.sgml from index.html.

  * Changed element names to lower-case.

  * Reindented.

  * Quoted all attribute values.

  * Added elements that are a good idea, but not strictly required (<tbody>)

  * Reordered the two main columns. A new row has been added at the top,
    and the second column (as it appears in a graphical browser) is in
    this row. The left hand side bar is in the second row. Text browsers
    should then display the main text first, with the quick links
    afterwards. The display on graphical browsers should be almost identical
    to how it was before.

        Caveat: This forces the first line within the sidebar down by one.

  * Removed <b>...</b> from the headings.

  * Use &base; in many of the "href"s, instead of ".".

  * <font size="4">  --> <big>

  * <font size="2">  --> <small>

Approved by: Wolfram <wosch@freebsd.org>
1998-12-17 20:24:46 +00:00

68 lines
1.2 KiB
Makefile

# $Id: Makefile,v 1.45 1998-12-17 20:24:46 nik Exp $
.if exists(Makefile.conf)
.include "Makefile.conf"
.endif
# These are turned into validated, normalized HTML files.
DOCS= applications.sgml
DOCS+= auditors.sgml
DOCS+= availability.sgml
DOCS+= docs.sgml
DOCS+= features.sgml
DOCS+= register.sgml
DOCS+= index.sgml
DOCS+= internet.sgml
DOCS+= mailto.sgml
DOCS+= publish.sgml
DOCS+= send-pr.sgml
DOCS+= support.sgml
DOCS+= where.sgml
DOCS+= y2kbug.sgml
CLEANFILES+=atoz.sgml site.sgml
# These will be directly installed.
#DATA= COPYING COPYING.LIB README.mirror robots.txt index.html
DATA= robots.txt index.html
# Subdirectories
# SGML
SUBDIR= security
SUBDIR+= commercial
SUBDIR+= docproj
SUBDIR+= news
SUBDIR+= alpha
SUBDIR+= internal
SUBDIR+= copyright
SUBDIR+= search
SUBDIR+= gallery
SUBDIR+= ports
SUBDIR+= projects
SUBDIR+= releases
# Non-SGML
SUBDIR+= gifs
SUBDIR+= cgi
# Non-English
.if !defined(ENGLISH_ONLY) || empty(ENGLISH_ONLY)
SUBDIR+= ja
SUBDIR+= es
.endif
.if !defined(WEB_ONLY) || empty(WEB_ONLY)
# Extern
SUBDIR+= tutorials
DOCSUBDIR= FAQ handbook
.endif
SGMLOPTS+= -links -hdr ${.CURDIR}/doc.hdr -ftr ${.CURDIR}/doc.ftr
WEBDIR= data
.include "web.mk"