FreeCalypso > hg > freecalypso-tools
view rvinterf/l1filter/Makefile @ 869:7be2220d52c5
ringtools/examples: add compile.sh like in e1-experiments
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 28 Mar 2022 06:03:34 +0000 |
parents | ea458ee48691 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 CPPFLAGS=-I../include PROG= l1trace-filter OBJS= init.o main.o pktsort.o rvif_rx.o LIBS= ../libinterf/libinterf.a INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin all: ${PROG} ${PROG}: ${OBJS} ${LIBS} ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} install: ${PROG} mkdir -p ${INSTBIN} install -c ${PROG} ${INSTBIN} clean: rm -f *.o *.out *errs ${PROG}