tests/genericmake/project_files/Makefile
author Edouard Tisserant
Tue, 02 Feb 2021 11:17:03 +0100
branchsvghmi
changeset 3122 229795c03e11
parent 1542 0535a6b50534
permissions -rw-r--r--
SVGHMI: make a copy of tests/svghmi as test/svghmi_widget because too crowded since having pages for widget documentation. Strip those pages from tests/svghmi, so that it
is more light for regular testing.
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 $< -> $@"