tests/genericmake/project_files/Makefile
author Edouard Tisserant
Thu, 16 Dec 2021 08:32:58 +0100
branchRuntimeLists
changeset 3398 7ca3924be865
parent 1542 0535a6b50534
permissions -rw-r--r--
Xenomai runtime: ensure that __DEBUG global variable is set when resuming debug.
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 $< -> $@"