xref: /openbsd/regress/usr.bin/mandoc/mdoc/Dd/Makefile (revision 7ee40f33)
1*7ee40f33Sschwarze# $OpenBSD: Makefile,v 1.1 2014/08/14 02:00:52 schwarze Exp $
2*7ee40f33Sschwarze
3*7ee40f33SschwarzeREGRESS_TARGETS	 = badarg dupe late manarg noarg order
4*7ee40f33SschwarzeLINT_TARGETS	 = badarg dupe late manarg noarg order
5*7ee40f33Sschwarze
6*7ee40f33Sschwarze# If groff finds exactly three arguments, it assumes they are month,
7*7ee40f33Sschwarze# day and year without further checking.  If there are no arguments,
8*7ee40f33Sschwarze# groff uses the string "Epoch".  Otherwise, it silently falls back
9*7ee40f33Sschwarze# to today's date.
10*7ee40f33Sschwarze# That is not at all sane behaviour, we are not going to imitate it.
11*7ee40f33Sschwarze
12*7ee40f33SschwarzeSKIP_GROFF	 = badarg manarg noarg
13*7ee40f33SschwarzeSKIP_ASCII	 = noarg
14*7ee40f33Sschwarze
15*7ee40f33Sschwarze# Autodetection fails for late .Dd, so specify -mdoc explicitly.
16*7ee40f33Sschwarze
17*7ee40f33SschwarzeMOPTS		+= -mdoc
18*7ee40f33Sschwarze
19*7ee40f33Sschwarze.include <bsd.regress.mk>
20