view rvinterf/Makefile @ 129:7d7950d7f924

Riviera should be ready for the first TI fw build attempt
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Fri, 01 Nov 2013 06:13:58 +0000
parents 811b138f1bed
children e0d56e9be8a2
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	rvtdump
INSTBIN=/usr/local/bin

RVTDUMP_OBJS=	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}