tests/genericmake/project_files/Makefile
author Surkov Sergey <surkovsv93@gmail.com>
Tue, 17 Jan 2017 13:30:38 +0300
changeset 1637 6f4624687b89
parent 1542 0535a6b50534
permissions -rw-r--r--
fix IL jumps highlighting in Text Viewer
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 $< -> $@"