tests/genericmake/project_files/Makefile
author Edouard Tisserant <edouard.tisserant@gmail.com>
Tue, 19 Oct 2021 12:58:22 +0200
changeset 3366 1ca385429bba
parent 1542 0535a6b50534
permissions -rw-r--r--
OPCUA: Add browsing of variables exposed by client when selecting location from variable panel.
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 $< -> $@"