2024-09-09 08:52:07 +00:00
|
|
|
ocmemdir = $(prefix)/ocmem
|
|
|
|
|
|
|
|
ocmem_PROGRAMS = ocmem_test
|
|
|
|
ocmem_test_LDADD = -lpthread -lrt
|
|
|
|
ocmem_SCRIPTS = ocmem_test.sh run.sh
|
|
|
|
|
|
|
|
KERNEL_FLAGS ?= ARCH=arm
|
|
|
|
|
|
|
|
EXTRA_CFLAGS = -DDEBUG
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
module = msm_ocmem_test_mod.ko
|
2024-09-09 08:52:07 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
# "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
|