First commit
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..9745852
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+CFLAGS	= -Wall -O2 -g
+
+ifdef KERNEL_HEADERS
+	CFLAGS += -I$(KERNEL_HEADERS)
+endif
+
+EXE =
+
+all: $(EXE)
+
+$(EXE): common.o
+
+clean:
+	rm -rf *.o $(EXE)