tests/genericmake/project_files/Makefile
author Edouard Tisserant
Wed, 18 Mar 2020 12:06:50 +0100
branchsvghmi
changeset 2885 f398896b7ebf
parent 1542 0535a6b50534
permissions -rw-r--r--
SVGHMI: intermediate untested state. Excluded ForEach widget from pages handled widgets.
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 $< -> $@"