comparison rvinterf/old/before-rvinterf/Makefile @ 964:373af5f74e39

rvinterf: all retired stuff gathered under old
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Fri, 06 Nov 2015 23:22:47 +0000
parents rvinterf/old/Makefile@f42854da4563
children
comparison
equal deleted inserted replaced
963:d69d1e097b18 964:373af5f74e39
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= rvtdump
4 XPROGS= etmsend
5 INSTBIN=/usr/local/bin
6
7 RVTDUMP_OBJS= log.o openport.o packetrx.o packettx.o rvtdump.o rvtdump_tx.o \
8 trdump.o
9
10 all: ${PROGS} ${XPROGS}
11
12 rvtdump: ${RVTDUMP_OBJS}
13 ${CC} ${CFLAGS} -o $@ ${RVTDUMP_OBJS}
14
15 etmsend: etmsend.c
16 ${CC} ${CFLAGS} -o $@ $@.c
17
18 install: ${PROGS}
19 mkdir -p ${INSTBIN}
20 install -c ${PROGS} ${INSTBIN}
21
22 clean:
23 rm -f *.o *.out *errs ${PROGS} ${XPROGS}