diff --git a/functional-tests/bcache/Makefile b/functional-tests/bcache/Makefile new file mode 100644 index 0000000..ab161ec --- /dev/null +++ b/functional-tests/bcache/Makefile @@ -0,0 +1,11 @@ +bcache.so: bcache.o + gcc -shared -o $@ $< -laio + +bcache.o: bcache.c + gcc -std=gnu11 -fpic -I. -Wall -c -o $@ $< + +.PHONEY: clean +clean: + rm -f bcache.so bcache.o + +