FreeCalypso > hg > freecalypso-reveng
view arm7dis/Makefile @ 202:2976621a6cbd
leo-obj/l1_dyn_dwl/l1_dyn_dwl_init.hints: show 2D byte arrays more clearly
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 04 Jul 2015 18:37:26 +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