mirror of
https://github.com/richardghirst/PiBits.git
synced 2025-02-20 14:54:14 +01:00
11 lines
266 B
Makefile
11 lines
266 B
Makefile
obj-m = servoblaster.o
|
|
|
|
KERNEL_TREE := /home/richard/Pi/git/linux
|
|
|
|
module:
|
|
make -C ${KERNEL_TREE} ARCH=arm CROSS_COMPILE=/usr/bin/arm-linux-gnueabi- M=$(PWD) modules
|
|
|
|
clean:
|
|
make -C ${KERNEL_TREE} ARCH=arm CROSS_COMPILE=/usr/bin/arm-linux-gnueabi- M=$(PWD) clean
|
|
|