tests/genericmake/project_files/Makefile
author Edouard Tisserant
Mon, 13 Sep 2021 12:19:17 +0200
changeset 3315 5f9db9c6c69c
parent 1542 0535a6b50534
permissions -rw-r--r--
Xenomai runtime: more verbose error message when problem with RT-Pipes.
BEREMIZ_OBJS = $(BEREMIZSRC:.c=.o)

all: warn some_binary
	@echo "*** all done ***"

warn:
	@echo "*** Sample Makefile, does nothing ***"

some_binary: $(BEREMIZ_OBJS)
	@echo "* Would link $^ -> $@"

%.o: %.c
	@echo "* Would compile $< -> $@"