comparison gsm-fw/bsp/Makefile @ 644:1199cdf99c32

SIM integration: sim32.c compiles
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Wed, 03 Sep 2014 20:29:54 +0000
parents 8be182dd9218
children 2768b4339275
comparison
equal deleted inserted replaced
643:d779078abe40 644:1199cdf99c32
1 CC= arm-elf-gcc 1 CC= arm-elf-gcc
2 CFLAGS= -O2 -fno-builtin -mthumb-interwork 2 CFLAGS= -O2 -fno-builtin -mthumb-interwork
3 ASFLAGS=-mthumb-interwork 3 ASFLAGS=-mthumb-interwork
4 LD= arm-elf-ld 4 LD= arm-elf-ld
5 5
6 sinclude ../include/config.mk
7
6 IOBJS= irq_twiddle.o niq32.o 8 IOBJS= irq_twiddle.o niq32.o
9 XTOBJS= armio.o clkm.o init_target.o inth.o niq.o timer.o timer1.o timer2.o
7 10
8 XTOBJS= armio.o clkm.o init_target.o inth.o niq.o timer.o timer1.o timer2.o 11 ifeq (${CONFIG_INCLUDE_SIM},1)
12 XTOBJS+=sim.o
13 IOBJS+= sim32.o
14 endif
9 15
10 XOBJS= ${XTOBJS} oldint.o 16 XOBJS= ${XTOBJS} oldint.o
11 AOBJS= ${IOBJS} oldint.o 17 AOBJS= ${IOBJS} oldint.o
12 18
13 HDRS= armio.h clkm.h dma.h inth.h iq.h mem.h rhea_arm.h sim.h timer.h \ 19 HDRS= armio.h clkm.h dma.h inth.h iq.h mem.h rhea_arm.h sim.h timer.h \