tests/genericmake/project_files/Makefile
author Edouard Tisserant
Mon, 13 Jul 2020 13:56:42 +0200
changeset 2703 32ffdb32b14e
parent 1542 0535a6b50534
permissions -rw-r--r--
Python Runtime: order of execution of extension's init() and cleanup() now reflects order of appearance of extensions in configuration tree.
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 $< -> $@"