[uClibc-cvs] uClibc/test Makefile,1.27,1.28 Rules.mak,1.23,1.24

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


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

Modified Files:
	Makefile Rules.mak 
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: Rules.mak
===================================================================
RCS file: /var/cvs/uClibc/test/Rules.mak,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- Rules.mak	27 Feb 2003 17:04:22 -0000	1.23
+++ Rules.mak	18 Oct 2003 10:20:27 -0000	1.24
@@ -46,6 +46,8 @@
 STRIPTOOL=strip
 LDD=../$(TESTDIR)ldso/util/ldd
 
+RM= rm -f
+
 # Select the compiler needed to build binaries for your development system
 HOSTCC=gcc
 HOSTCFLAGS=-O2 -Wall

Index: Makefile
===================================================================
RCS file: /var/cvs/uClibc/test/Makefile,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- Makefile	1 Sep 2003 23:43:42 -0000	1.27
+++ Makefile	18 Oct 2003 10:20:27 -0000	1.28
@@ -44,7 +44,7 @@
 	ctags -R
 	
 clean: subdirs_clean
-	rm -f *.[oa] *~ core
+	$(RM) *.[oa] *~ core
 
 subdirs: $(patsubst %, _dir_%, $(DIRS))
 subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS))




More information about the uClibc-cvs mailing list