[functional-tests] bcache makefile

This commit is contained in:
Joe Thornber 2017-09-21 15:12:07 +01:00
parent d4df0cc272
commit 7796b4eecb

View File

@ -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