On Fri, 24 Jun 2022 11:51:51 +0200 Quentin Rameau <[email protected]> wrote:
Dear Quentin, > > libgrapheme.a: $(SRC:=.o) > > - $(AR) rc $@ $? > > + $(AR) rc $@ $(SRC:=.o) > > $(RANLIB) $@ > > This works as intended with $?, because then you only update objects > that are out of date, not *all* objects inconditionally (just note > that you might want the -u flag too). today I learned, thank you! :) I pushed the change, but kept out the -u flag, as it's a bit redundant and might lead to unexpected results when you override something in make. Please let me know if I'm missing something there. With best regards Laslo
