beremiz
Clone
Summary
Browse
Changes
Graph
Tests: remove -it from docker invocation
2022-05-16, etisserant
02c7b758fa9b
Tests: remove -it from docker invocation
Workaround "The input device is not a TTY" error on Github Action.
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 $< -> $@"