tests/genericmake/project_files/Makefile
author Sergey Surkov <surkovsv93@gmail.com>
Tue, 13 Dec 2016 17:47:34 +0300
changeset 1602 95ecb26fdc4e
parent 1542 0535a6b50534
permissions -rw-r--r--
fix bug with recent projects menu, remove path to the project from menu, if project directory doesn't exist
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 $< -> $@"