zephyr/samples/task_profiler/profiler/scripts/term/Makefile
Fabrice Olivero d24bd64302 samples: adds task_profiler application, code and scripts
This patches includes
- a profiler file/Makefile that can be added to an application to enable
  kernel event logger flush over UART
- a nanokernel and a microkernel sample application permitting to
  exercise the profiler
- scripts permitting to get kernel event profiler data over UART
  console and post-process this data

Origin: Original
Change-Id: Icacf4354c526c7f780b11371e9c28c87e6461eb8
Signed-off-by: Fabrice Olivero <fabrice.olivero@intel.com>
2016-05-17 20:13:40 +00:00

11 lines
141 B
Makefile

PROGRAM=../profterm
GCC=gcc
$(PROGRAM): term.c
$(GCC) term.c -Wall -o $(PROGRAM) -lpthread
default: $(PROGRAM)
clean:
rm -rf $(PROGRAM)