tests/genericmake/project_files/Makefile
author Mario de Sousa <msousa@fe.up.pt>
Mon, 13 Aug 2018 11:10:23 +0200
changeset 2261 37ef7a3c6b8b
parent 1542 0535a6b50534
permissions -rw-r--r--
fixed problems reported by certification testing : vendor identifier acces rights (now read only), and bvlc_maintenance timer was increasing too fast.
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 $< -> $@"