comparison 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
comparison
equal deleted inserted replaced
125:17c1e2a38418 126:811b138f1bed
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= rvtdump
4 INSTBIN=/usr/local/bin
5
6 RVTDUMP_OBJS= openport.o packetrx.o rvtdump.o trdump.o
7
8 all: ${PROGS}
9
10 rvtdump: ${RVTDUMP_OBJS}
11 ${CC} ${CFLAGS} -o $@ ${RVTDUMP_OBJS}
12
13 install: ${PROGS}
14 mkdir -p ${INSTBIN}
15 install -c ${PROGS} ${INSTBIN}
16
17 clean:
18 rm -f *.o *.out *errs ${PROGS}