tests/genericmake/project_files/Makefile
author Sergey Surkov <surkovsv93@gmail.com>
Wed, 02 Nov 2016 14:23:24 +0300
changeset 1562 6e38f13d4b7b
parent 1542 0535a6b50534
permissions -rw-r--r--
fix borders of pull-down choice list box in Config tab, in Project Properties
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 $< -> $@"