tests/genericmake/project_files/Makefile
author Surkov Sergey <surkovsv93@gmail.com>
Fri, 12 Jan 2018 17:56:48 +0300
changeset 1962 f41dc3829af6
parent 1542 0535a6b50534
permissions -rw-r--r--
fix display TIME type variables in debug 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 $< -> $@"