working on "duff" example led me to futzing with gdb, found out the gdb tutorial is kinda (a lot) outdated

This commit is contained in:
Dan Buch
2011-06-19 18:27:45 -04:00
parent b95730410b
commit 2f315a6353
8 changed files with 135 additions and 1 deletions

14
gdbtut/Makefile Normal file
View File

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