tests/genericmake/project_files/Makefile
author dporopat <denis.poropat@smarteh.si>
Fri, 18 May 2018 11:05:49 +0200
branch#2486
changeset 2206 1e397afc36a9
parent 1542 0535a6b50534
permissions -rw-r--r--
#2486 ExposedCalls with register options as a dictionary.
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 $< -> $@"