tests/genericmake/project_files/Makefile
author Edouard Tisserant
Wed, 05 Dec 2018 11:35:18 +0100
changeset 2464 10437c6c294e
parent 1542 0535a6b50534
permissions -rw-r--r--
Empirically reverted calls done just after NewPLC back to the order as it was before chunked transfer. Apparently I broke something... To be continued
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 $< -> $@"