tests/genericmake/project_files/Makefile
author Edouard Tisserant <edouard.tisserant@gmail.com>
Thu, 24 Oct 2019 11:20:04 +0200
changeset 2639 62b5f7b909a9
parent 1542 0535a6b50534
permissions -rw-r--r--
Fixed one more sequel of marking temporary variables created while generating ST code out of FBD
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 $< -> $@"