git-subtree-dir: PracticingC git-subtree-mainline: fd87ec8fe9aa35c91b273d37bbc08bb8077a425a git-subtree-split: ef128a996fc826339bbc3d9deea376932caf6981
13 lines
198 B
Makefile
13 lines
198 B
Makefile
# tutorial exercises from http://www.unknownroad.com/rtfm/gdbtut/
|
|
|
|
ALL_BIN := $(patsubst %.c,$(BINDIR)/%,$(wildcard *.c))
|
|
|
|
|
|
$(BINDIR)/%: %.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|
|
|
|
all: $(ALL_BIN)
|
|
|
|
|
|
.PHONY: all
|