# HG changeset patch # User meillo@marmaro.de # Date 1216823946 -7200 # Node ID bbc214c6fa6f0bd5214685b50dedf8e6d4769dae # Parent f1d43b52ed36c364de647d4ac9615abd426eb4c6 fixed the result of an unchecked rename ... diff -r f1d43b52ed36 -r bbc214c6fa6f Makefile --- a/Makefile Wed Jul 23 15:20:35 2008 +0200 +++ b/Makefile Wed Jul 23 16:39:06 2008 +0200 @@ -56,7 +56,7 @@ .PHONY: strip strip: ${NAME} @echo stripping - @strip * + @strip $(NAME) .PHONY: changelog @@ -68,7 +68,7 @@ .PHONY: clean clean: rm -f *.o - rm -f * + rm -f $(NAME) #dist: build changelog