30 lines
763 B
Makefile
30 lines
763 B
Makefile
|
spinlockdir = $(prefix)/spinlock
|
||
|
spinlock_CFLAGS = -Werror
|
||
|
dist_spinlock_SCRIPTS = spinlock_test.sh run.sh
|
||
|
|
||
|
KERNEL_FLAGS ?= ARCH=arm
|
||
|
|
||
|
module = spinlock_test_module.ko
|
||
|
spinlock_test_module.ko: spinlock_test_module.c
|
||
|
|
||
|
kmake = $(MAKE) $(KERNEL_FLAGS) -C $(KERNEL_DIR) M=$(CURDIR)
|
||
|
|
||
|
$(module):
|
||
|
$(kmake) modules
|
||
|
|
||
|
all-local: $(module)
|
||
|
|
||
|
install-exec-local: $(module)
|
||
|
$(kmake) INSTALL_MOD_PATH=$(DESTDIR)$(prefix)/modules modules_install
|
||
|
|
||
|
dist_spinlock_DATA = README.txt $(module)
|
||
|
|
||
|
# "make distclean" will always run clean-local in this directory,
|
||
|
# regardless of the KERNELMODULES conditional. Therefore, ensure
|
||
|
# KERNEL_DIR exists before running clean. Further, don't fail even
|
||
|
# if there is a problem.
|
||
|
clean-local:
|
||
|
-test ! -d "$(KERNEL_DIR)" || $(kmake) clean
|
||
|
|
||
|
|