tests/genericmake/project_files/Makefile
author Sergey Surkov <surkovsv93@gmail.com>
Mon, 06 Mar 2017 17:39:29 +0300
changeset 1655 a079b0322a48
parent 1542 0535a6b50534
permissions -rw-r--r--
Merged skvorl/beremiz into default
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 $< -> $@"