Mercurial > mplayer.hg
view libdha/kernelhelper/Makefile @ 4824:e2df1d29d0f7
Change in configure relative to lirc, same thing in Makefile plus
some cleanup (COMMONS_LIB is now really common :)
author | albeu |
---|---|
date | Sat, 23 Feb 2002 21:20:16 +0000 |
parents | 68d588f4914b |
children | b69ddd4d3bb9 |
line wrap: on
line source
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