$(sort <list>)
objs = hello.c world.c are.c you.c ok.c all: @echo $(sort $(objs))
# make are.c hello.c ok.c world.c you.c