FreeCalypso > hg > freecalypso-reveng
view arm7dis/Makefile @ 372:0f9606d1f8b8
pirelli/aec: results of investigation into Pirelli's AEC config
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 29 Jul 2021 09:08:45 +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