box-o-sand/gowrikumar/Makefile

14 lines
104 B
Makefile
Raw Normal View History

2011-06-17 01:46:56 +00:00
BINDIR := ./bin
2011-06-17 01:46:56 +00:00
export BINDIR
2011-06-17 01:46:56 +00:00
all:
cd src && $(MAKE)
2011-06-17 01:48:15 +00:00
clean:
rm -v $(BINDIR)/*
2011-06-13 03:02:18 +00:00
2011-06-17 01:48:15 +00:00
.PHONY: all clean