tests/genericmake/project_files/Makefile
author Edouard Tisserant
Mon, 29 Oct 2018 11:33:36 +0100
changeset 2324 1cf3768ebf85
parent 1542 0535a6b50534
permissions -rw-r--r--
Automatically get PSK and ID when connecting to PYRO[S], so that future connection through PYROS can use that same key. Also fixed case to UPPER for *PSK.
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 $< -> $@"