summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile
new file mode 100644
index 000000000..3690fb3e8
--- /dev/null
+++ b/test/Makefile
@@ -0,0 +1,11 @@
+FILES = ioctl-test
+CC = gcc
+LIBS =
+CFLAGS = -O3 -Wall -fomit-frame-pointer -funroll-loops -g -I ../linux/include
+LDFLAGS =
+
+all: $(FILES)
+
+clean:
+ -rm -f core core.[0123456789]* *~ *.o $(FILES)
+