diff Makefile @ 14:bbc214c6fa6f

fixed the result of an unchecked rename ...
author meillo@marmaro.de
date Wed, 23 Jul 2008 16:39:06 +0200
parents 8db6497d6065
children 5937504619f2
line wrap: on
line diff
--- 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