tests/genericmake/project_files/Makefile
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Mon, 27 Aug 2018 12:06:24 +0300
changeset 2298 10cfc280927c
parent 1542 0535a6b50534
permissions -rw-r--r--
Increase size of comment block in WAMP example, so all information is visible
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 $< -> $@"