tests/genericmake/project_files/Makefile
author Mario de Sousa <msousa@fe.up.pt>
Mon, 21 Dec 2020 22:32:03 +0000
changeset 2715 1215a6b741d5
parent 1542 0535a6b50534
permissions -rw-r--r--
Modbus plugin: fix bug - map BOOL flag onto C u8 (was incorrectly mapped onto u16)
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 $< -> $@"