blob: 97497b82f29f0f82208fb779c9b8a0737c2af849 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.2 2003/07/10 15:19:55 jason Exp $
# -O2 breaks this
CFLAGS=-g
PROG= simm13
SRCS=simm13.c simm13_asm.S
REGRESS_TARGETS=simm13_check
simm13.c: genc.pl
perl $> > $@
simm13_asm.S: genasm.pl
perl $> > $@
simm13_check: simm13
${.OBJDIR}/simm13 | diff -u - ${.CURDIR}/simm.out
.include <bsd.regress.mk>
|