> quiet_cmd_bootar = BOOTAR $@ > - cmd_bootar = $(CROSS32AR) -cr $@.$$$$ $^; mv $@.$$$$ $@ > + cmd_bootar = $(CROSS32AR) -cr $@.$$$$ $(filter-out FORCE,$^); > mv $@.$$$$ $@ Is there no way to do this without using filter-out? It's ugly and a bit fragile. Oh and it shouldn't be ; but && (not your fault, but while you're at it...) Segher