tests/projects/genericmake/project_files/Makefile
author Edouard Tisserant
Thu, 05 May 2022 11:48:43 +0200
changeset 3455 2716cd8e498d
parent 3416 53c66c4aefa3
permissions -rw-r--r--
SVGHMI: Add support for forcing widget update frequency with period longer than a second. As an example, "HMI:Display|10s@/myvar" updates variable every 10 seconds.
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 $< -> $@"