Makefile.inc
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # from: @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91
  2. # Doing a make install builds /usr/include/pthread
  3. #
  4. # The ``rm -rf''s used below are safe because rm doesn't follow symbolic
  5. # links.
  6. FILES= cond.h copyright.h fd.h fd_pipe.h kernel.h mutex.h posix.h 
  7.    pthread.h pthread_attr.h queue.h util.h 
  8. # Machine dependent header file
  9. MFILE= ${.CURDIR}/arch/${MACHINE}/machdep.h
  10. realinstall:
  11. if [ ! -d ${DESTDIR}/usr/include/pthread ]; then 
  12. mkdir ${DESTDIR}/usr/include/pthread; 
  13. fi 
  14. @echo installing ${FILES}
  15. @-for i in ${FILES}; do 
  16. cmp -s $$i ${DESTDIR}/usr/include/pthread/$$i || 
  17.     install -c -m 644 $$i ${DESTDIR}/usr/include/$$i; 
  18. done
  19. cmp -s ${MFILE} ${DESTDIR}/usr/include/pthread/machdep.h || 
  20.   install -c -m 644 ${MFILE} ${DESTDIR}/usr/include/pthread/machdep.h
  21. rm -rf ${DESTDIR}/usr/include/pthread.h
  22. ln -s /usr/include/pthread/pthread.h ${DESTDIR}/usr/include/pthread.h
  23. @chown -R ${BINOWN}:${BINGRP} ${DESTDIR}/usr/include/pthread
  24. @chmod -R a-w ${DESTDIR}/usr/include/pthread