tests/genericmake/project_files/Makefile
author Surkov Sergey <surkovsv93@gmail.com>
Fri, 03 Mar 2017 15:57:58 +0300
changeset 1654 f4696d85552a
parent 1542 0535a6b50534
permissions -rw-r--r--
add stretching to columns Name, Type, Doc in variable panel
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 $< -> $@"