tests/genericmake/project_files/Makefile
author Edouard Tisserant
Fri, 12 Jun 2020 14:40:50 +0200
changeset 2671 30493ff3a23a
parent 1542 0535a6b50534
permissions -rw-r--r--
Debug : when BEREMIZ_DEBUG file exist, display all commands issued in console.
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 $< -> $@"