respect CFLAGS/CPPFLAGS in env
diff --git a/Makefile b/Makefile
index aa33ef1..0e0fef9 100644
--- a/Makefile
+++ b/Makefile
@@ -299,9 +299,9 @@
 
 # Use LINUXINCLUDE when you must reference the include/ directory.
 # Needed to be compatible with the O= option
-CFLAGS		:=
-CPPFLAGS	:=
-AFLAGS		:=
+CFLAGS		:= $(CFLAGS)
+CPPFLAGS	:= $(CPPFLAGS)
+AFLAGS		:= $(AFLAGS)
 
 # Read KERNELRELEASE from .kernelrelease (if it exists)
 KERNELRELEASE = $(shell cat .kernelrelease 2> /dev/null)