dn2.c -- A small utility to use the Devanagari font together with the German
package on LaTeX 2e.

dn2.c is a small pre-processor to be used after devnag.c has been run.
Several macros from the original dev2e.sty are removed and included in this
pre-processor, for they don't interfere with macros of a local language
package. The Style file is now named devnag.sty (please change it in your
.dn file).
I have changed the original devnag.c a little bit so that my compiler
doesn't complain so much, but it has no functional effect.

Feedback of any kind welcome (please use dn2.c in the Subject line).

Klaus-J. Wolf
yanestra@t-online.de



Example Makefile for a Text named dummy.dn:

CFLAGS=-O2
#CFLAGS=-g

dummy.ps: dummy.dvi
	dvips dummy.dvi

dummy.dvi: dummy.tex
	latex dummy.tex

dummy.tex: dummy.dn2 dn2
	dn2 dummy.dn2 dummy.tex

dummy.dn2: dummy.dn devnag
	devnag dummy.dn dummy.dn2

devnag: devnag.c
	gcc $(CFLAGS) -pipe -Wall -o devnag devnag.c

dn2: dn2.c
	gcc $(CFLAGS) -pipe -Wall -o dn2 dn2.c