beremiz
Clone
Summary
Browse
Changes
Graph
Tests: use script rather than alias so that bash doesn't need to be interactive shell with a TTY
2022-05-16, Edouard Tisserant
2c712b8c736f
Tests: use script rather than alias so that bash doesn't need to be interactive shell with a TTY
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 $< -> $@"