FreeCalypso > hg > freecalypso-sw
view rvinterf/Makefile @ 127:f4f0c8738dcb
rvtdump: satisfactory handling of output from Pirelli's fw
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Thu, 31 Oct 2013 23:08:59 +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}