comparison rvinterf/old/before-rvinterf/Makefile @ 0:e7502631a0f9

initial import from freecalypso-sw rev 1033:5ab737ac3ad7
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 11 Jun 2016 00:13:35 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e7502631a0f9
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}