tests/genericmake/project_files/Makefile
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Thu, 27 Oct 2016 16:24:13 +0300
changeset 1553 abe55de5316b
parent 1542 0535a6b50534
permissions -rw-r--r--
fix issue that sometimes period for cyclic task wasn't saved.

This is complete fix for the problem described in 8626bba.
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 $< -> $@"