[uClibc-cvs] uClibc/test/stat Makefile,1.7,1.8

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


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

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/stat/Makefile,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- Makefile	24 Jan 2003 16:04:35 -0000	1.7
+++ Makefile	18 Oct 2003 10:20:52 -0000	1.8
@@ -27,7 +27,7 @@
 all: $(TARGETS)
 
 stat_source:
-	-@ rm -f $(TARGETS)
+	-@ $(RM) $(TARGETS)
 	-@ echo "-------"
 	-@ echo "stat.c source: "
 	-@ echo " "
@@ -95,7 +95,7 @@
 	-@ echo " "
 
 clean:
-	rm -f *.[oa] *~ core stat stat_glibc stat_glibc.out stat.out \
+	$(RM) *.[oa] *~ core stat stat_glibc stat_glibc.out stat.out \
 		stat64 stat64_glibc stat64_glibc.out stat64.out
 
 




More information about the uClibc-cvs mailing list