FreeCalypso > hg > freecalypso-reveng
view arm7dis/Makefile @ 88:691551f0635b
armdis: implemented decoding of data processing instructions
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sat, 29 Mar 2014 20:28:13 +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