box-o-sand/gowrikumar/Makefile
2011-06-16 21:48:15 -04:00

14 lines
104 B
Makefile

BINDIR := ./bin
export BINDIR
all:
cd src && $(MAKE)
clean:
rm -v $(BINDIR)/*
.PHONY: all clean