FreeCalypso > hg > freecalypso-reveng
view ticoff/Makefile @ 124:700d77d5cf00
tiobjd disasm: data section handling added
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Fri, 04 Apr 2014 18:39:01 +0000 |
parents | fb1e47bebe00 |
children | 2c6b1319383b |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROG= tiobjd OBJS= armdis.o atcommon.o basics.o disasm.o globals.o lowlevel.o main.o \ profile.o reloc.o symtab.o tables.o thumbdis.o HDRS= coffconst.h filestruct.h globals.h intstruct.h all: ${PROG} ${PROG}: ${OBJS} ${CC} -o $@ ${OBJS} ${OBJS}: ${HDRS} install: install -c -o bin -g bin -m 755 ${PROG} /usr/local/bin clean: rm -f *.o ${PROG} *err