9c210ee7e5
This is a port of ALD - the Assembly Language Debugger. It provides breakpoint debugging capabilities, a disassembler, and easy memory and register manipulation to those wishing to debug their assembly language programs. Currently, x86 platforms are supported. WWW: http://dunx1.irt.drexel.edu/~psa22/ald.html from Patrick Alken <pa59 at cornell dot edu>
27 lines
516 B
Makefile
27 lines
516 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/11/15 16:48:37 sturm Exp $
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
COMMENT= "Assembly Language Debugger"
|
|
|
|
DISTNAME= ald-0.1.5a
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://dunx1.irt.drexel.edu/~psa22/ald.html
|
|
|
|
MAINTAINER= Patrick Alken <pa59@cornell.edu>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://dunx1.irt.drexel.edu/~psa22/source/
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
.include <bsd.port.mk>
|