beremiz
Clone
Summary
Browse
Changes
Graph
More explicit default value for generic makefile target command. Assume Makfile is located in project_files
wxPython4
2023-02-14, Edouard Tisserant
58c74d098f09
More explicit default value for generic makefile target command. Assume Makfile is located in project_files
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 $< -> $@"