tests/genericmake/project_files/Makefile
author ctbenergy <ewald.weinahndl@gmail.com>
Sat, 19 Nov 2016 23:42:49 +0100
changeset 1573 6dbc61e3dd65
parent 1542 0535a6b50534
permissions -rw-r--r--
fix warning: 'return' with no value in function startPLC
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 $< -> $@"