include ../makefile.common
all:
	$(CC) $(CFLAGS)  bv1.c -o bv1 $(LIBS)
	$(CC) $(CFLAGS)  bv2.c -o bv2 $(LIBS)
clean:
	rm -f bv1 bv2
