nuttx-apps/testing/sd_bench/Makefile
Stuart Ianna 8f56bc1de2 testing/sd_bench: Port sdbench testing utility for PX4-Autopilot.
Add port of the sdbench utility from PX4-Autopilot: https://github.com/PX4/PX4-Autopilot

This tool is useful for evaluating and testing peformance of SD cards,
block devices or mount points.
2023-10-30 16:58:10 +08:00

11 lines
274 B
Makefile

include $(APPDIR)/Make.defs
PROGNAME = $(CONFIG_TESTING_SD_BENCH_PROGNAME)
PRIORITY = $(CONFIG_TESTING_SD_BENCH_PRIORITY)
STACKSIZE = $(CONFIG_TESTING_SD_BENCH_STACKSIZE)
MODULE = $(CONFIG_TESTING_SD_BENCH)
MAINSRC = sd_bench_main.c
include $(APPDIR)/Application.mk