tests/projects/genericmake/project_files/Makefile
author Edouard Tisserant <edouard.tisserant@gmail.com>
Thu, 28 Sep 2023 18:39:19 +0200
changeset 3848 91da73c3df61
parent 3416 53c66c4aefa3
permissions -rw-r--r--
Addapt to Py3.11.5 in Stunnel.py
b2a_hqx is now deprecated, base64 should bring comparable results
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 $< -> $@"