view gsm-fw/riviera/Makefile @ 992:a7b0b426f9ca

target-utils: boot ROM UART autodetection revamped The new implementation should work with both the familiar Calypso C035 boot ROM version found in our regular targets as well as the older Calypso F741979B version found on the vintage D-Sample board.
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Wed, 30 Dec 2015 21:28:41 +0000
parents afceeeb2cba1
children
line wrap: on
line source

AR=	arm-elf-ar
RANLIB=	arm-elf-ranlib

SUBDIR=	init rvf rvm rvt support

INIT_OBJS=	init/create_RVtasks.o
RVF_OBJS=	rvf/rvf_buffer.o rvf/rvf_mem_pool.o rvf/rvf_msg.o \
		rvf/rvf_task.o rvf/rvf_time.o rvf/rvf_trace_adapt.o
RVM_OBJS=	rvm/rvm_api.o rvm/rvm_group_swe.o rvm/rvm_mem.o rvm/rvm_swe.o \
		rvm/rvm_swe_db.o rvm/rvm_swe_hdlr.o rvm/rvm_task.o
RVT_OBJS=	rvt/rvt_api.o rvt/rvt_env.o rvt/rvt_task.o
SUP_OBJS=	support/exception.o

OBJS=	${INIT_OBJS} ${RVF_OBJS} ${RVM_OBJS} ${RVT_OBJS} ${SUP_OBJS}

all:	librv.a

${SUBDIR}: FRC
	cd $@; ${MAKE} ${MFLAGS}

${INIT_OBJS}:	init
	@true

${RVF_OBJS}:	rvf
	@true

${RVM_OBJS}:	rvm
	@true

${RVT_OBJS}:	rvt
	@true

${SUP_OBJS}:	support
	@true

librv.a:	${OBJS}
	${AR} cru $@ ${OBJS}
	${RANLIB} $@

clean: FRC
	rm -f *.[oa] *.out *errs
	for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done

FRC: