commit | 314929b41e75dd2834cc5eeb6a0f360de0a02c09 | [log] [tgz] |
---|---|---|
author | Cyril Bur <cyril.bur@au1.ibm.com> | Fri Oct 14 15:55:16 2016 +1100 |
committer | Cyril Bur <cyril.bur@au1.ibm.com> | Tue Jan 10 19:30:03 2017 +1100 |
tree | 90b22a90328c46f90e92cf70c73757e92276da52 |
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)