tests/genericmake/project_files/Makefile
author Edouard Tisserant
Thu, 10 Sep 2020 16:08:26 +0200
branchsvghmi
changeset 3053 bff50b7e50ee
parent 1542 0535a6b50534
permissions -rw-r--r--
Runtime/PLCObject : move call to PreStartPLC right after call to the "start" method of all python extensions, and then just before the start of the python loop executing python_* blocks.
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 $< -> $@"