tests/genericmake/project_files/Makefile
author Edouard Tisserant
Mon, 07 Jan 2019 11:33:34 +0100
changeset 2478 733d77bf0aa7
parent 1542 0535a6b50534
permissions -rw-r--r--
Disable MDNS:// scheme support. Also prevent discovery pannel to produce some. For now it seems that that feature is unused, and could be a security issue.
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 $< -> $@"