--- ../Makefile.orig	Thu Oct 23 02:54:27 2003
+++ ../Makefile	Wed Jul 26 22:32:05 2006
@@ -59,8 +59,8 @@
 	rm -rf $(TARGET_DIR) ; mkdir $(TARGET_DIR)
 	(cd ${SRC_DIR}/handc ; \
          find . \! \( -name CVS -prune \) -print) > .handc.list
-	cat .handc.list | (cd ${SRC_DIR}/handc ; cpio -oc) \
-	                | (cd ${TARGET_DIR} ; cpio -idc)
+	cat .handc.list | tar -cf- -C ${SRC_DIR}/handc -T- \
+	                | tar -xf- -C ${TARGET_DIR}
 	if test -d $(TARGET_DIR)/tmp ; then : ; \
 	else mkdir $(TARGET_DIR)/tmp ; fi
 
@@ -130,9 +130,9 @@
 
 stage1::
 	cd stage0 ; ./configure --prefix=`pwd`/install $(CONFIG_OPTS)
-	cd stage0 ; make
+	cd stage0 ; $(MAKE)
 	mkdir -p stage0/install/bin
-	cd stage0 ; make shell
+	cd stage0 ; $(MAKE) shell
 	cd stage0 ; ln -fs ../../rshell/rs install/bin/rs
 	cd stage0 ; ln -fs ../../system.img install/resource/system.img
 	$(MAKE) RS=`pwd`/stage0/install/bin/rs RSC_FLAGS2=-ccode \


syntax highlighted by Code2HTML, v. 0.9.1