tests/genericmake/project_files/Makefile
author Edouard Tisserant
Thu, 17 May 2018 09:33:14 +0200
branch#2476
changeset 2009 00faf9279dc0
parent 1542 0535a6b50534
permissions -rw-r--r--
close branch #2476 - URI dialog fixed
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 $< -> $@"