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

View File

@@ -2,16 +2,18 @@ CD = cd
RM = rm -v
CC := gcc
CFLAGS := -std=c99 -Wall
CFLAGS := -std=c99 -Wall -g
export CD RM CFLAGS
all:
$(CD) gowrikumar && $(MAKE)
$(CD) gdbtut && $(MAKE)
clean:
$(CD) gowrikumar && $(MAKE) clean
$(CD) gdbtut && $(MAKE) clean
.PHONY: all clean