tests/genericmake/project_files/Makefile
author Edouard Tisserant
Fri, 26 Mar 2021 14:46:38 +0100
branchsvghmi
changeset 3204 856f4698a0a8
parent 1542 0535a6b50534
permissions -rw-r--r--
SVGHMI: Fixed wierd CDATA mess in output xhtml, because of backticks copy pasted in some yml ||text block||
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 $< -> $@"