[uClibc-cvs] uClibc/test/silly Makefile,1.15,1.16

Erik Andersen andersen at uclibc.org
Sat Oct 18 10:21:18 UTC 2003


Update of /var/cvs/uClibc/test/silly
In directory winder:/tmp/cvs-serv6249/test/silly

Modified Files:
	Makefile 
Log Message:
Peter Kjellerstedt writes:

rm.patch:
* Define $(RM) as rm -f in Rules.mak and test/Rules.mak
  (this is the same definition as gmake uses by default).
* Change all occurrences of rm and rm -f into $(RM).



Index: Makefile
===================================================================
RCS file: /var/cvs/uClibc/test/silly/Makefile,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- Makefile	23 Jan 2003 16:28:04 -0000	1.15
+++ Makefile	18 Oct 2003 10:20:51 -0000	1.16
@@ -26,7 +26,7 @@
 all: $(TARGETS)
 
 hello_source:
-	-@ rm -f $(TARGETS)
+	-@ $(RM) $(TARGETS)
 	-@ echo "-------"
 	-@ echo "hello.c source: "
 	-@ echo " "
@@ -75,6 +75,6 @@
 
 
 clean:
-	rm -f *.[oa] *~ core $(TARGETS)
+	$(RM) *.[oa] *~ core $(TARGETS)
 
 




More information about the uClibc-cvs mailing list