box-o-sand/oldstuff/PracticingC/gdbtut/Makefile

15 lines
178 B
Makefile
Raw Normal View History

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