tests/genericmake/project_files/Makefile
author Sergey Surkov <surkovsv93@gmail.com>
Fri, 28 Oct 2016 18:28:10 +0300
changeset 1558 d75cc9ad328e
parent 1542 0535a6b50534
permissions -rw-r--r--
now dialogs Find and Search in Project can be closed with ESC 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 $< -> $@"