tests/projects/genericmake/project_files/Makefile
author Edouard Tisserant
Fri, 04 Nov 2022 10:51:45 +0100
changeset 3653 d5ff60e906b0
parent 3416 53c66c4aefa3
permissions -rw-r--r--
SVGHMI: add ScreenSaver feature. Automatically jumps to a page named "ScreenSaver" after timeout defined in page arguments.
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 $< -> $@"