I am seeing a line of makefile as follows:
$(LAST_TARGET_DIR)/%: LFLAGS += -lpthread -lrt -Wl,-uevaluate
In my understanding, $(LAST_TARGET_DIR)/% is a target matching, and after the target should come its dependencies. Why are linking flags changed here?