comparison rvinterf/lowlevel/Makefile @ 174:3256dc6e84ae

rvinterf: refactored rvtdump compiles and works
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Fri, 22 Nov 2013 07:41:31 +0000
parents rvinterf/old/Makefile@f42854da4563
children 2f214bd03119
comparison
equal deleted inserted replaced
173:f42854da4563 174:3256dc6e84ae
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= rvtdump
4 INSTBIN=/usr/local/bin
5
6 RVTDUMP_OBJS= format.o openport.o output.o packetrx.o rvtdump.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}