zephyr/samples/task_profiler/profiler/scripts/term/Makefile

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)