tests/genericmake/project_files/Makefile
author Edouard Tisserant
Tue, 02 Jun 2020 11:34:50 +0200
branchsvghmi
changeset 2974 78938093e8b2
parent 1542 0535a6b50534
permissions -rw-r--r--
IDE: Main toolbar : Show repair button also in stop mode. Move repair button after disconnect button.
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 $< -> $@"