From d15aed16469d90a4ab7ecdac239a27953f78adaa Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Mon, 15 Sep 2003 22:50:28 +0000 Subject: [PATCH] added %.dis pattern rule. --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7087cdb..c104229 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # dis6502 by Robert Bond, Udi Finkelstein, and Eric Smith # Makefile -# $Id: Makefile,v 1.6 2003/09/15 21:51:38 eric Exp $ +# $Id: Makefile,v 1.7 2003/09/15 22:50:28 eric Exp $ # Copyright 2000-2003 Eric Smith # # This program is free software; you can redistribute it and/or modify @@ -118,4 +118,5 @@ DEPENDS = $(ALL_CSRCS:.c=.d) -include $(DEPENDS) - +%.dis: %.bin %.defs + dis6502 -p $*.defs -r 0xe000 $*.bin >$*.dis