tests/genericmake/project_files/Makefile
author Edouard Tisserant
Fri, 02 Feb 2018 16:22:25 +0100
changeset 1923 65edbc03fdbf
parent 1542 0535a6b50534
permissions -rw-r--r--
ClassImporter now accepts string, callable or class, for compatibility with some old 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 $< -> $@"