[functional-tests] start working on dm-ioctl bindings

This commit is contained in:
Joe Thornber
2017-09-26 15:16:45 +01:00
parent a1acd0c868
commit 742629fb8d
5 changed files with 686 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
dm-ioctl.so: dm-ioctl.o
gcc -shared -o $@ $< -laio
dm-ioctl.o: dm-ioctl.c
gcc -std=gnu11 -fpic -I. -Wall -c -o $@ $<
.PHONEY: clean
clean:
rm -f dm-ioctl.so dm-ioctl.o