tests/genericmake/project_files/Makefile
author Edouard Tisserant
Fri, 21 Feb 2020 16:18:53 +0100
branchsvghmi
changeset 2841 7c6050cde9e3
parent 1542 0535a6b50534
permissions -rw-r--r--
SVGHMI: optimize browser work by hiding (display:none) pages that are not displayed.
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 $< -> $@"