FreeCalypso > hg > freecalypso-reveng
view arm7dis/Makefile @ 357:ebb9377cf52c
fluid-mnf/machine.c: read operation time report message
changed to match the reality of the number being in ms, not s
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 13 Mar 2020 20:56:47 +0000 |
parents | fb5ea2758482 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= armdis thumbdis ARMDIS_OBJS= armdis.o atcommon.o common.o THUMBDIS_OBJS= atcommon.o common.o thumbdis.o INSTDIR=/usr/local/bin all: ${PROGS} armdis: ${ARMDIS_OBJS} ${CC} -o $@ ${ARMDIS_OBJS} thumbdis: ${THUMBDIS_OBJS} ${CC} -o $@ ${THUMBDIS_OBJS} install: install -c -o bin -g bin -m 755 ${PROGS} ${INSTDIR} clean: rm -f *.o ${PROGS} *errs