tests/genericmake/project_files/Makefile
author Edouard Tisserant
Wed, 08 Aug 2018 13:26:48 +0200
changeset 2250 86f61c4dfe76
parent 1542 0535a6b50534
permissions -rw-r--r--
Passed bacnet*.py through autopep8, and attemped to fix manually what went wrong + fixed pylint complains
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 $< -> $@"