commit 92e2126481692eb658c2dda1e2fe9d7051a078e0 parent 7d4f8f11cc5568ce8e4cf7e44374a4b15dc76a1e Author: Anselm R. Garbe <garbeam@wmii.de> Date: Fri, 26 May 2006 16:22:27 +0200 merged Diffstat:
| doc/Makefile | | | 16 | ++++++++-------- |
| liblitz/font.c | | | 1 | - |
2 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/doc/Makefile b/doc/Makefile @@ -1,25 +1,25 @@ # window manager improved 2 user guide +l2h_opts=-local_icons -scalable_fonts -split +1 -subdir -show_section_numbers -address "<br>Last update: $(shell date) by $$USER@$$HOSTNAME" SRC = guide_en.tex wmii.tex DVI = ${SRC:.tex=.dvi} PDF = ${SRC:.tex=.pdf} +PS = ${SRC:.tex=.ps} HTML = ${SRC:.tex=.html} -all: ${DVI} ${PDF} #${HTML} - -.SUFFIXES: .tex .dvi .pdf .html +.SUFFIXES: .tex .dvi .pdf .ps .html +all: ${DVI} ${PDF} #${PS} ${HTML} .tex.dvi: latex -interaction=batchmode $< latex -interaction=batchmode $< - .tex.pdf: pdflatex $< pdflatex $< - +.dvi.ps: + dvips -o $@ $< .tex.html: - latex2html $< - + latex2html ${l2h_opts} $< clean: - rm -f *.pdf *.dvi *.log *.aux *.out *.toc + rm -f *.pdf *.ps *.dvi *.log *.aux *.out *.toc rm -rf guide_en diff --git a/liblitz/font.c b/liblitz/font.c @@ -6,7 +6,6 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <locale.h> #include <cext.h> #include "blitz.h"