summaryrefslogtreecommitdiffstats
path: root/libdha/kernelhelper/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libdha/kernelhelper/Makefile')
-rw-r--r--libdha/kernelhelper/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libdha/kernelhelper/Makefile b/libdha/kernelhelper/Makefile
index dc0535f362..b03ebd2924 100644
--- a/libdha/kernelhelper/Makefile
+++ b/libdha/kernelhelper/Makefile
@@ -1,6 +1,6 @@
KERNEL_INCLUDES = /usr/src/linux/include
INCLUDES = -I$(KERNEL_INCLUDES)
-CFLAGS = -g -O2 -Wall -D__KERNEL__ -DMODULE -include $(KERNEL_INCLUDES)/linux/modversions.h
+CFLAGS = -O2 -D__KERNEL__ -DMODULE -include $(KERNEL_INCLUDES)/linux/modversions.h
VERSION = $(shell grep UTS_RELEASE $(KERNEL_INCLUDES)/linux/version.h | cut -d '"' -f2)
MDIR = /lib/modules/$(VERSION)/misc
@@ -10,7 +10,7 @@ dhahelper.o: dhahelper.c dhahelper.h
$(CC) $(CFLAGS) $(INCLUDES) -c $(basename $@).c
test: test.c
- $(CC) -g -O -Wall $(INCLUDES) -o $@ $@.c
+ $(CC) -O $(INCLUDES) -o $@ $@.c
install: dhahelper.o
if test ! -d $(MDIR) ; then mkdir -p $(MDIR) ; fi