diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-08-19 05:25:15 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-08-19 05:25:15 +0000 |
commit | 432758174f40b8b581395fe1b3f85fb696c7e1f6 (patch) | |
tree | 53eef3ebf8e899f795a643bd1b36576dd610070c /regress/sys/arch/sparc64/emul-popc/simm/Makefile | |
parent | 96646966eefc0d0cbe51c45a487d38b4584e2808 (diff) |
replace the brain dead perl implementation with an devious C implementation
(based on discussion with drahn... insanity is all mine tho =)
Diffstat (limited to 'regress/sys/arch/sparc64/emul-popc/simm/Makefile')
-rw-r--r-- | regress/sys/arch/sparc64/emul-popc/simm/Makefile | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/regress/sys/arch/sparc64/emul-popc/simm/Makefile b/regress/sys/arch/sparc64/emul-popc/simm/Makefile index 31919d51869..692d487ded0 100644 --- a/regress/sys/arch/sparc64/emul-popc/simm/Makefile +++ b/regress/sys/arch/sparc64/emul-popc/simm/Makefile @@ -1,19 +1,6 @@ -# $OpenBSD: Makefile,v 1.4 2003/07/12 04:22:02 jason Exp $ +# $OpenBSD: Makefile,v 1.5 2003/08/19 05:25:14 jason Exp $ -# -O2 breaks this -CFLAGS=-O0 PROG= simm13 -SRCS=simm13.c simm13_asm.S -REGRESS_TARGETS=simm13_check -CLEANFILES+=simm13.c simm13_asm.S - -simm13.c: genc.pl - perl ${.CURDIR}/genc.pl > $@ - -simm13_asm.S: genasm.pl - perl ${.CURDIR}/genasm.pl > $@ - -simm13_check: simm13 - ${.OBJDIR}/simm13 | diff -u - ${.CURDIR}/simm.out +SRCS= simm13.c .include <bsd.regress.mk> |