tests/genericmake/project_files/Makefile
author Edouard Tisserant
Thu, 14 Feb 2019 10:06:43 +0100
changeset 2489 27e4fd37fea6
parent 1542 0535a6b50534
permissions -rw-r--r--
Fix previous commit : Using wx.CallAfter shouldn't have been necessary, and was a symptom of failing evaluator's deadlock detection.
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 $< -> $@"