1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

Clean up the clean, distclean makefile stuff

This commit is contained in:
Ryan Dahl 2011-05-07 21:45:06 -07:00
parent db2189f3b9
commit e88c63fd75
3 changed files with 12 additions and 6 deletions

View File

@ -40,7 +40,7 @@ test/echo.o: test/echo.c test/echo.h
$(CC) $(CFLAGS) -c test/echo.c -o test/echo.o
.PHONY: clean distclean test benchmark
.PHONY: clean clean-platform distclean distclean-platform test benchmark
test: test/run-tests
@ -49,5 +49,8 @@ test: test/run-tests
bench: test/run-benchmarks
test/run-benchmarks
clean:
clean: clean-platform
$(RM) -f *.o *.a test/run-tests$(E) test/run-benchmarks$(E)
distclean: distclean-platform
$(RM) -f *.o *.a test/run-tests$(E) test/run-benchmarks$(E)

View File

@ -39,5 +39,6 @@ oio.a: oio-win.o
oio-win.o: oio-win.c oio.h oio-win.h
$(CC) $(CFLAGS) -c oio-win.c -o oio-win.o
distclean:
$(RM) -f *.o *.a
distclean-platform:
clean-platform:
;

View File

@ -42,6 +42,8 @@ ev/ev.o: ev/config.h ev/ev.c
ev/config.h:
cd ev && ./configure
distclean:
$(RM) -f *.o *.a
clean-platform:
$(MAKE) -C ev clean
distclean-platform:
$(MAKE) -C ev distclean