Improve makefile

This commit is contained in:
Ryan Dahl 2011-03-28 03:32:02 -07:00
parent 6b0d4fa372
commit 668c0c6b27

View File

@ -13,3 +13,13 @@ ev/ev.o: ev/config.h ev/ev.c
ev/config.h:
cd ev && ./configure
.PHONY: clean distclean
clean:
rm *.o *.a
$(MAKE) -C ev clean
distclean:
rm *.o *.a
$(MAKE) -C ev clean