Parent Directory
|
Revision Log
First version of the Debconf 6 talk on i18n/l10n. Submitted to the CVS DDP in order to handle this as a proper Debian document.
| 1 | BASENAME=debian-i18n-l10n |
| 2 | SOURCE=$(BASENAME).xml |
| 3 | |
| 4 | all: html pdf tex |
| 5 | |
| 6 | tex: $(BASENAME).tex |
| 7 | $(BASENAME).tex: $(SOURCE) |
| 8 | docbook2tex $< |
| 9 | |
| 10 | html: $(BASENAME).html |
| 11 | $(BASENAME).html: $(SOURCE) |
| 12 | docbook2html $< |
| 13 | |
| 14 | pdf: $(BASENAME).pdf |
| 15 | $(BASENAME).pdf: $(SOURCE) |
| 16 | docbook2pdf $< |
| 17 | |
| 18 | validate: |
| 19 | xmllint --valid --noout $(SOURCE) |
| 20 | |
| 21 | clean: |
| 22 | rm -f *html *pdf *ps *dvi *tex |
| ViewVC Help | |
| Powered by ViewVC 1.1.5 |