FreeCalypso > hg > freecalypso-sw
view rvinterf/Makefile @ 136:3b5c3f3646fb
RV bring-up: lack of timer ticks fixed,
still investigating the lack of "system time" messages from the RVT task
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Mon, 04 Nov 2013 23:35:11 +0000 |
parents | e0d56e9be8a2 |
children | 4d8e4c58df71 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= rvtdump INSTBIN=/usr/local/bin RVTDUMP_OBJS= log.o openport.o packetrx.o rvtdump.o trdump.o all: ${PROGS} rvtdump: ${RVTDUMP_OBJS} ${CC} ${CFLAGS} -o $@ ${RVTDUMP_OBJS} install: ${PROGS} mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f *.o *.out *errs ${PROGS}