a04a502787
git-subtree-dir: PracticingC git-subtree-mainline:fd87ec8fe9
git-subtree-split:ef128a996f
15 lines
178 B
Makefile
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
|