cのソース一個一個からそれぞれbin/の下にロードモジュールをcompileするなら
こう

^x^fMakefile
SRC = $(wildcard *.c)
LOAD = $(SRC:%.c=bin/%)
all: $(LOAD)
bin/%: %.c
(タブ) echo $(LINK.c) -o $@ $^
^x^s
M-xcompile