tests/genericmake/project_files/Makefile
author Edouard Tisserant
Tue, 23 Jun 2020 13:50:21 +0200
changeset 2683 5d8a4deacfe1
parent 1542 0535a6b50534
permissions -rw-r--r--
Modbus add a timer thread, and switch timer to SIGEV_THREAD_ID to follow xenomai posix skin restrictions.
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 $< -> $@"