Mercurial > mplayer.hg
diff libdha/kernelhelper/Makefile @ 7073:b69ddd4d3bb9
removed -W -Wall -g and other gcc-specific warning/debug options
patch by Joey Parrish <joey@yunamusic.com>
author | arpi |
---|---|
date | Thu, 22 Aug 2002 23:29:46 +0000 |
parents | 68d588f4914b |
children | b069afd2a0de |
line wrap: on
line diff
--- a/libdha/kernelhelper/Makefile Thu Aug 22 23:28:33 2002 +0000 +++ b/libdha/kernelhelper/Makefile Thu Aug 22 23:29:46 2002 +0000 @@ -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 @@ $(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