tests/projects/genericmake/project_files/Makefile
author Edouard Tisserant <edouard.tisserant@gmail.com>
Fri, 24 Nov 2023 14:47:14 +0100
changeset 3877 ecb947e5bbb4
parent 3416 53c66c4aefa3
permissions -rw-r--r--
SVGHMI: fix JS error loading empty single page

svg:svg tag should not be considered as a detachable group,
so filter only svg:g elements
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 $< -> $@"