[Mplayer-cvslog] CVS: main/libdha/kernelhelper Makefile,NONE,1.1

Alex Beregszaszi alex at mplayer.dev.hu
Sat Feb 2 07:34:47 CET 2002


Update of /cvsroot/mplayer/main/libdha/kernelhelper
In directory mplayer:/var/tmp.root/cvs-serv16750

Added Files:
	Makefile 
Log Message:
initial

--- NEW FILE ---
KERNEL_INCLUDES = /usr/src/linux/include
INCLUDES = -I$(KERNEL_INCLUDES)
CFLAGS = -g -O2 -Wall -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) -g -O -Wall $(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




More information about the MPlayer-cvslog mailing list