tests/genericmake/project_files/Makefile
author Edouard Tisserant <edouard.tisserant@gmail.com>
Thu, 29 Mar 2018 23:25:26 +0200
changeset 1976 5d72971a36a3
parent 1542 0535a6b50534
permissions -rw-r--r--
Fixed bug that was creating many frames at starup on Windows
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 $< -> $@"