tests/genericmake/project_files/Makefile
author dporopat <denis.poropat@smarteh.si>
Fri, 20 Apr 2018 11:21:20 +0200
branch#2476
changeset 2001 bcbd41efd846
parent 1542 0535a6b50534
permissions -rw-r--r--
#2476 Added uri location editor, getting connectors from list in Beremiz.
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 $< -> $@"