view rvinterf/Makefile @ 156:eba29cb0526c

gsm-fw: started on the header dependencies for bsp/abb+spi/abb_core_inth.c
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 17 Nov 2013 08:15:19 +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}