tests/genericmake/project_files/Makefile
author Andrey Skvortsov <andrej.skvortzov@gmail.com>
Fri, 08 Sep 2017 11:53:48 +0300
changeset 1795 e27d253bd0ba
parent 1542 0535a6b50534
permissions -rw-r--r--
fix problem if _should_write is called by expired timer after
termination of wx application.
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 $< -> $@"