tests/genericmake/project_files/Makefile
author Edouard Tisserant
Tue, 20 Aug 2019 10:01:18 +0200
changeset 2630 4d5c5e5871ab
parent 1542 0535a6b50534
permissions -rw-r--r--
yslt_noindent : Avoid YSLT's indent logic to interfere when using linequote.
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 $< -> $@"