Add 'PracticingC/' from commit 'ef128a996fc826339bbc3d9deea376932caf6981'

git-subtree-dir: PracticingC
git-subtree-mainline: fd87ec8fe9
git-subtree-split: ef128a996f
This commit is contained in:
Dan Buch
2013-01-09 23:49:46 -05:00
32 changed files with 769 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
# 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