tests/genericmake/project_files/Makefile
author Edouard Tisserant
Mon, 08 Nov 2021 14:10:36 +0100
changeset 3387 ecefd38d5c7d
parent 1542 0535a6b50534
permissions -rw-r--r--
SVGHMI: update tests/evghmi to reflect/test latest changes. update generated XSLT.
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 $< -> $@"