blob: d089d340bfa151cf98b6a899f36997df68566433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $Id$
# Originally written 2004 by Karl Berry. Public domain.
include ../common.mak
test = story
check test: knowngood.dvitype
$(run) tex '\nonstopmode\input $(test) \bye' # found in distribution
$(dvicheck) knowngood.dvitype $(test).dvi \
|| diff -u1 knowngood.dvitype $(test).dvitype
clean distclean:
$(rm) $(test).aux $(test).log $(test).dvi $(test).dvitype
|