tests/genericmake/project_files/Makefile
author Edouard Tisserant
Wed, 25 Nov 2020 14:45:01 +0100
branchsvghmi
changeset 3076 f1efd1c01991
parent 1542 0535a6b50534
permissions -rw-r--r--
SVGHMI: Update default test to check that Input widget is indeed updated when variable 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 $< -> $@"