tests/genericmake/project_files/Makefile
author Edouard Tisserant
Tue, 11 Feb 2020 13:56:48 +0100
branchsvghmi
changeset 2834 6ac6a9dff594
parent 1542 0535a6b50534
permissions -rw-r--r--
SVGHMI: be a bit more tolerant with missing HMI paths or missing elements in widgets : continue build (with warning) and fail silently at runtime.
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 $< -> $@"