tests/genericmake/project_files/Makefile
author Edouard Tisserant <edouard.tisserant@gmail.com>
Mon, 04 Jan 2021 12:34:56 +0100
branchsvghmi
changeset 3105 8819c8b66a42
parent 1542 0535a6b50534
permissions -rw-r--r--
SVGHMI: CircularBar: use animate() + cormetic changes
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 $< -> $@"