box-o-sand/PracticingC/gdbtut/Makefile
Dan Buch a04a502787 Add 'PracticingC/' from commit 'ef128a996fc826339bbc3d9deea376932caf6981'
git-subtree-dir: PracticingC
git-subtree-mainline: fd87ec8fe9
git-subtree-split: ef128a996f
2013-01-09 23:49:46 -05:00

15 lines
178 B
Makefile

# tutorial exercises from http://www.unknownroad.com/rtfm/gdbtut/
BINDIR := $(PWD)/bin
export BINDIR
all:
$(CD) src && $(MAKE)
clean:
$(RM) $(BINDIR)/*
.PHONY: all clean