tests/genericmake/project_files/Makefile
author Edouard Tisserant
Fri, 11 Jun 2021 11:56:07 +0200
changeset 2740 610801fe1b88
parent 1542 0535a6b50534
permissions -rw-r--r--
IDE: Log: Prevent crash when display progress on empty log.
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 $< -> $@"