tests/projects/genericmake/project_files/Makefile
author Edouard Tisserant
Fri, 16 Dec 2022 13:43:38 +0100
changeset 3707 3c60c78dfa5d
parent 3416 53c66c4aefa3
permissions -rw-r--r--
py_ext: add CSV file reading POUs in python extension library
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 $< -> $@"