FreeCalypso > hg > freecalypso-reveng
view arm7dis/Makefile @ 90:f68d8e7a904f
armdis: implemented decoding of multiplication instructions
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sat, 29 Mar 2014 22:19:21 +0000 |
parents | f7fba8518fa2 |
children | dd6c92a1aa34 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= armdis ARMDIS_OBJS= armdis.o atcommon.o common.o INSTDIR=/usr/local/bin all: ${PROGS} armdis: ${ARMDIS_OBJS} ${CC} -o $@ ${ARMDIS_OBJS} clean: rm -f *.o ${PROGS} *errs