FreeCalypso > hg > freecalypso-tools
comparison rvinterf/l1filter/Makefile @ 855:ea458ee48691
rvinterf/l1filter: new program written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 09 Nov 2021 23:14:22 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
854:74331b35b1da | 855:ea458ee48691 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 CPPFLAGS=-I../include | |
4 PROG= l1trace-filter | |
5 OBJS= init.o main.o pktsort.o rvif_rx.o | |
6 LIBS= ../libinterf/libinterf.a | |
7 | |
8 INSTALL_PREFIX= /opt/freecalypso | |
9 | |
10 INSTBIN=${INSTALL_PREFIX}/bin | |
11 | |
12 all: ${PROG} | |
13 | |
14 ${PROG}: ${OBJS} ${LIBS} | |
15 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} | |
16 | |
17 install: ${PROG} | |
18 mkdir -p ${INSTBIN} | |
19 install -c ${PROG} ${INSTBIN} | |
20 | |
21 clean: | |
22 rm -f *.o *.out *errs ${PROG} |