tests/genericmake/project_files/Makefile
author Edouard Tisserant <edouard.tisserant@gmail.com>
Wed, 31 Mar 2021 09:08:15 +0200
branchsvghmi
changeset 3214 bb314cdfc656
parent 1542 0535a6b50534
permissions -rw-r--r--
SVGHMI: force svghmi build if any change in fonts or translation (.PO) files
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 $< -> $@"