FreeCalypso > hg > freecalypso-sw
view nuc-fw/bsp/Makefile @ 133:56b53c289785
rvtdump: some restructuring
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sat, 02 Nov 2013 22:24:14 +0000 |
parents | 8b0793c67f9f |
children |
line wrap: on
line source
CC= arm-elf-gcc CFLAGS= -O2 -fno-builtin -mthumb-interwork ASFLAGS=-mthumb-interwork LD= arm-elf-ld IOBJS= niq32.o XTOBJS= armio.o clkm.o init_target.o inth.o niq.o timer.o timer1.o timer2.o XOBJS= ${XTOBJS} oldint.o AOBJS= ${IOBJS} oldint.o HDRS= armio.h clkm.h dma.h inth.h iq.h mem.h rhea_arm.h sim.h timer.h \ timer1.h timer2.h ulpd.h all: ${IOBJS} ${XOBJS} xipcode.o ${AOBJS}: ${HDRS} ${XTOBJS}: %.o : %.c ${HDRS} ${CC} ${CFLAGS} -mthumb -c $< xipcode.o: ${XOBJS} ${LD} -r -o $@ ${XOBJS} clean: rm -f *.[oa] *errs