.include "../apv.mk"

OBJS=bpf.o listen.o

listen: ${OBJS}
	cc -o listen ${OBJS}

bpf.o: bpf.h

clean:
	rm -f ${OBJS} listen
