tests/genericmake/project_files/Makefile
author Edouard Tisserant
Fri, 21 Feb 2020 16:15:33 +0100
branchsvghmi
changeset 2840 e588f25e6c74
parent 1542 0535a6b50534
permissions -rw-r--r--
SVGHMI: Better and less verbose SVG namespace handling in XSLT transform
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 $< -> $@"