tests/genericmake/project_files/Makefile
author Edouard Tisserant
Fri, 18 Jun 2021 11:47:33 +0200
branchsvghmi
changeset 3263 1205b2d0acf2
parent 1542 0535a6b50534
permissions -rw-r--r--
SVGHMI: DnD UI: Fix SVG gen that was dropping widget name and making XSLTExceptions plus some UX enhancements.
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 $< -> $@"