tests/genericmake/project_files/Makefile
author Edouard Tisserant
Wed, 23 May 2018 10:53:57 +0200
changeset 2011 64268e87613e
parent 1542 0535a6b50534
permissions -rw-r--r--
Make Modbus mutexes non blocking for PLC. If data related to some modbus request is alredy locked when PLC wants to access it, then data isn't copied to/from PLC
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 $< -> $@"