Mercurial > mplayer.hg
view libdha/kernelhelper/Makefile @ 11256:bed47a358d05
fix issue when compiler is called 'cc', and --disable-gcc-checking was used
(it would force the compiler to be 'gcc')
Patch by Pierre Lombard <p_l@gmx.fr>
author | gabucino |
---|---|
date | Fri, 24 Oct 2003 07:44:38 +0000 |
parents | b69ddd4d3bb9 |
children | b069afd2a0de |
line wrap: on
line source
KERNEL_INCLUDES = /usr/src/linux/include INCLUDES = -I$(KERNEL_INCLUDES) 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 all: dhahelper.o test dhahelper.o: dhahelper.c dhahelper.h $(CC) $(CFLAGS) $(INCLUDES) -c $(basename $@).c test: test.c $(CC) -O $(INCLUDES) -o $@ $@.c install: dhahelper.o if test ! -d $(MDIR) ; then mkdir -p $(MDIR) ; fi install -m 644 dhahelper.o $(MDIR)/dhahelper.o depmod -a dep: clean: rm -f *.o *~ distclean: clean rm -f test