FreeCalypso > hg > freecalypso-sw
view rvinterf/Makefile @ 126:811b138f1bed
rvtdump utility written, compiles
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Thu, 31 Oct 2013 19:59:16 +0000 |
parents | |
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}