M7350/qcom-opensource/kernel/kernel-tests/memory_prof/Makefile.am

27 lines
814 B
Makefile
Raw Normal View History

2024-09-09 08:52:07 +00:00
memory_profdir = $(prefix)/memory_prof
memory_prof_PROGRAMS = memory_prof
memory_prof_SOURCES = memory_prof.c
memory_prof_CFLAGS = -lm
dist_memory_prof_SCRIPTS = memory_prof.sh run.sh
KERNEL_FLAGS ?= ARCH=arm
all_modules = the_memory_prof_module.ko
kmake = $(MAKE) $(KERNEL_FLAGS) -C $(KERNEL_DIR) M=$(CURDIR)
the_memory_prof_module.ko: memory_prof_module.c timing_debug.c
$(kmake) modules
all-local: $(all_modules)
install-exec-local: $(all_modules)
$(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