mirror of
https://github.com/richardghirst/PiBits.git
synced 2025-02-21 15:54:15 +01:00
11 lines
266 B
Plaintext
11 lines
266 B
Plaintext
|
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
|
||
|
|