tests/genericmake/project_files/Makefile
author Edouard Tisserant
Fri, 12 Dec 2014 14:41:53 +0100
changeset 1428 e14003eb4d42
parent 1387 435965ca8b63
child 1542 0535a6b50534
permissions -rw-r--r--
Simplified use of runtime's global variable __common_ticktime accross extensions.
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 $< -> $@"