tests/genericmake/project_files/Makefile
author Edouard Tisserant
Wed, 18 Sep 2019 11:03:56 +0200
changeset 2635 ae099881d800
parent 1542 0535a6b50534
permissions -rw-r--r--
PLCobject: Call "stop" and "cleanup" methods from python runtime files in reverse order compared to "init" and "start".
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 $< -> $@"