comparison Makefile.in @ 367:a4f53d9b3154 r21-1-13

Import from CVS: tag r21-1-13
author cvs
date Mon, 13 Aug 2007 11:01:07 +0200
parents 7347b34c275b
children cc15677e0335
comparison
equal deleted inserted replaced
366:83d76f480a59 367:a4f53d9b3154
53 RECURSIVE_MAKE=@RECURSIVE_MAKE@ 53 RECURSIVE_MAKE=@RECURSIVE_MAKE@
54 SHELL = /bin/sh 54 SHELL = /bin/sh
55 LANG = C 55 LANG = C
56 RM = rm -f 56 RM = rm -f
57 pwd = /bin/pwd 57 pwd = /bin/pwd
58 TAR = tar
58 59
59 ## ==================== Things `configure' Might Edit ==================== 60 ## ==================== Things `configure' Might Edit ====================
60 61
61 CC=@CC@ 62 CC=@CC@
62 CPP=@CPP@ 63 CPP=@CPP@
422 dest=$$1 ; shift ; \ 423 dest=$$1 ; shift ; \
423 test -d $${dir} \ 424 test -d $${dir} \
424 -a "`(cd $${dir} && $(pwd))`" != \ 425 -a "`(cd $${dir} && $(pwd))`" != \
425 "`(cd $${dest} && $(pwd))`" \ 426 "`(cd $${dest} && $(pwd))`" \
426 && (echo "Copying $${dir}..." ; \ 427 && (echo "Copying $${dir}..." ; \
427 (cd $${dir} && tar -cf - . ) | \ 428 (cd $${dir} && $(TAR) -cf - . ) | \
428 (cd $${dest} && umask 022 && tar -xf - );\ 429 (cd $${dest} && umask 022 && $(TAR) -xf - );\
429 chmod 0755 $${dest}; \ 430 chmod 0755 $${dest}; \
430 for subdir in `find $${dest} -type d ! -name RCS ! -name SCCS ! -name CVS -print` ; do \ 431 for subdir in `find $${dest} -type d ! -name RCS ! -name SCCS ! -name CVS -print` ; do \
431 (cd $${subdir} && $(RM) -r RCS CVS SCCS \#* *~) ; \ 432 (cd $${subdir} && $(RM) -r RCS CVS SCCS \#* *~) ; \
432 done) ; \ 433 done) ; \
433 done 434 done