mirror of
https://github.com/itomato/macusbdb.git
synced 2024-10-07 14:55:09 +00:00
14 lines
262 B
Makefile
14 lines
262 B
Makefile
KERNELPATH=/lib/modules/`uname -r`/build
|
|
#KERNELPATH=/home/jeroen/dockstar/linux-2.6.35.3
|
|
|
|
macusbfb.ko: macusbfb.c
|
|
make -C ${KERNELPATH} M=`pwd`
|
|
|
|
install: macusbfb.ko
|
|
make -C ${KERNELPATH} M=`pwd` modules_install
|
|
|
|
clean:
|
|
make -C ${KERNELPATH} M=`pwd` clean
|
|
|
|
|