tests/genericmake/project_files/Makefile
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Tue, 11 Apr 2017 17:45:49 +0300
changeset 1677 db05cb9e0439
parent 1542 0535a6b50534
permissions -rw-r--r--
fix problem with debugging external string variables

Debug update stopped if external string variable added to debug
variable panel.
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 $< -> $@"