home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / riscbsd / sources / src_tgz / src_tgz~ / src / Makefile < prev   
Makefile  |  1996-09-07  |  11KB  |  317 lines

  1. #
  2. #    Makefile,v 1.57 1995/05/29 23:50:55 rgrimes Exp
  3. #
  4. # Make command line options:
  5. #    -DCLOBBER will remove /usr/include and MOST of /usr/lib
  6. #    -DMAKE_LOCAL to add ./local to the SUBDIR list
  7. #    -DMAKE_PORTS to add ./ports to the SUBDIR list
  8. #    -DMAKE_EBONES to build eBones (KerberosIV)
  9. #
  10. #    -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir
  11. #    -DNOCRYPT will prevent building of crypt versions
  12. #    -DNOLKM do not build loadable kernel modules
  13. #    -DNOOBJDIR do not run ``${MAKE} obj''
  14. #    -DNOPROFILE do not build profiled libraries
  15. #    -DNOSECURE do not go into secure subdir
  16.  
  17. # Put initial settings here.
  18. SUBDIR=
  19.  
  20. # We must do include and lib first so that the perl *.ph generation
  21. # works correctly as it uses the header files installed by this.
  22. .if exists(include)
  23. SUBDIR+= include
  24. .endif
  25. .if exists(lib)
  26. SUBDIR+= lib
  27. .endif
  28.  
  29. .if exists(bin)
  30. SUBDIR+= bin
  31. .endif
  32. .if exists(contrib)
  33. SUBDIR+= contrib
  34. .endif
  35. .if exists(games)
  36. SUBDIR+= games
  37. .endif
  38. .if exists(gnu)
  39. SUBDIR+= gnu
  40. .endif
  41. .if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
  42. SUBDIR+= eBones
  43. .endif
  44. .if exists(libexec)
  45. SUBDIR+= libexec
  46. .endif
  47. .if exists(sbin)
  48. SUBDIR+= sbin
  49. .endif
  50. .if exists(share)
  51. SUBDIR+= share
  52. .endif
  53. .if exists(sys)
  54. SUBDIR+= sys
  55. .endif
  56. .if exists(usr.bin)
  57. SUBDIR+= usr.bin
  58. .endif
  59. .if exists(usr.sbin)
  60. SUBDIR+= usr.sbin
  61. .endif
  62. .if exists(secure) && !defined(NOCRYPT) && !defined(NOSECURE)
  63. SUBDIR+= secure
  64. .endif
  65. .if exists(lkm) && !defined(NOLKM)
  66. SUBDIR+= lkm
  67. .endif
  68.  
  69. # etc must be last for "distribute" to work
  70. .if exists(etc) && make(distribute)
  71. SUBDIR+= etc
  72. .endif
  73.  
  74. # These are last, since it is nice to at least get the base system
  75. # rebuilt before you do them.
  76. .if defined(MAKE_LOCAL) & exists(local) & exists(local/Makefile)
  77. SUBDIR+= local
  78. .endif
  79. .if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile)
  80. SUBDIR+= ports
  81. .endif
  82.  
  83. # Handle the -DNOOBJDIR and -DNOCLEANDIR
  84. .if defined(NOOBJDIR)
  85. OBJDIR=
  86. .else
  87. OBJDIR=        obj
  88. .endif
  89. .if defined(NOCLEANDIR)
  90. CLEANDIR=    clean
  91. .else
  92. CLEANDIR=    cleandir
  93. .endif
  94.  
  95. world:    hierarchy mk cleandist includes lib-tools libraries tools
  96.     @echo "--------------------------------------------------------------"
  97.     @echo " Rebuilding ${DESTDIR} The whole thing"
  98.     @echo "--------------------------------------------------------------"
  99.     @echo
  100.     ${MAKE} depend all install
  101.     cd ${.CURDIR}/share/man &&        ${MAKE} makedb
  102.  
  103. hierarchy:
  104.     @echo "--------------------------------------------------------------"
  105.     @echo " Making hierarchy"
  106.     @echo "--------------------------------------------------------------"
  107.     cd ${.CURDIR}/etc &&        ${MAKE} distrib-dirs
  108.  
  109. update:
  110. .if defined(SUP_UPDATE)
  111.     @echo "--------------------------------------------------------------"
  112.     @echo "Running sup"
  113.     @echo "--------------------------------------------------------------"
  114.     @sup -v ${SUPFILE}
  115. .endif
  116. .if defined(CVS_UPDATE)
  117.     @echo "--------------------------------------------------------------"
  118.     @echo "Updating /usr/src from cvs repository" ${CVSROOT}
  119.     @echo "--------------------------------------------------------------"
  120.     cd ${.CURDIR} &&  cvs update -P -d
  121. .endif
  122.  
  123. cleandist:
  124. .if !defined(NOCLEANDIR)
  125.     @echo "--------------------------------------------------------------"
  126.     @echo " Cleaning up the source tree, and rebuilding the obj tree"
  127.     @echo "--------------------------------------------------------------"
  128.     @echo
  129.     here=`pwd`; dest=/usr/obj`echo $$here | sed 's,^/usr/src,,'`; \
  130.     if test -d /usr/obj -a ! -d $$dest; then \
  131.         mkdir -p $$dest; \
  132.     else \
  133.         true; \
  134.     fi; \
  135.     cd $$dest && rm -rf ${SUBDIR}
  136.     find . -name obj | xargs rm -rf
  137. .if defined(MAKE_LOCAL) & exists(local) & exists(local/Makefile)
  138.     # The cd is done as local may well be a symbolic link
  139.     -cd local && find . -name obj | xargs rm -rf
  140. .endif
  141. .if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile)
  142.     # The cd is done as local may well be a symbolic link
  143.     -cd ports && find . -name obj | xargs rm -rf
  144. .endif
  145. #    ${MAKE} cleandir
  146.     ${MAKE} obj
  147. .endif
  148.  
  149. installmost:
  150.     @echo "--------------------------------------------------------------"
  151.     @echo " Installing programs only"
  152.     @echo "--------------------------------------------------------------"
  153.     cd ${.CURDIR}/bin    &&    ${MAKE} ${.MAKEFLAGS} install
  154.     cd ${.CURDIR}/sbin    &&    ${MAKE} ${.MAKEFLAGS} install
  155.     cd ${.CURDIR}/libexec    &&    ${MAKE} ${.MAKEFLAGS} install
  156.     cd ${.CURDIR}/usr.bin    &&    ${MAKE} ${.MAKEFLAGS} install
  157.     cd ${.CURDIR}/usr.sbin    &&    ${MAKE} ${.MAKEFLAGS} install
  158.     cd ${.CURDIR}/gnu/libexec &&    ${MAKE} ${.MAKEFLAGS} install
  159.     cd ${.CURDIR}/gnu/usr.bin &&    ${MAKE} ${.MAKEFLAGS} install
  160.     cd ${.CURDIR}/gnu/usr.sbin &&    ${MAKE} ${.MAKEFLAGS} install
  161. #.if defined(MAKE_EBONES) && !defined(NOCRYPT)
  162. #    cd ${.CURDIR}/eBones    &&    ${MAKE} ${.MAKEFLAGS} installmost
  163. #.endif
  164. #.if !defined(NOSECURE) && !defined(NOCRYPT)
  165. #    cd ${.CURDIR}/secure    &&    ${MAKE} ${.MAKEFLAGS} installmost
  166. #.endif
  167.  
  168. most:
  169.     @echo "--------------------------------------------------------------"
  170.     @echo " Building programs only"
  171.     @echo "--------------------------------------------------------------"
  172.     cd ${.CURDIR}/bin    &&    ${MAKE} ${.MAKEFLAGS} all
  173.     cd ${.CURDIR}/sbin    &&    ${MAKE} ${.MAKEFLAGS} all
  174.     cd ${.CURDIR}/libexec    &&    ${MAKE} ${.MAKEFLAGS} all
  175.     cd ${.CURDIR}/usr.bin    &&    ${MAKE} ${.MAKEFLAGS} all
  176.     cd ${.CURDIR}/usr.sbin    &&    ${MAKE} ${.MAKEFLAGS} all
  177.     cd ${.CURDIR}/gnu/libexec &&    ${MAKE} ${.MAKEFLAGS} all
  178.     cd ${.CURDIR}/gnu/usr.bin &&    ${MAKE} ${.MAKEFLAGS} all
  179.     cd ${.CURDIR}/gnu/usr.sbin &&    ${MAKE} ${.MAKEFLAGS} all
  180. #.if defined(MAKE_EBONES) && !defined(NOCRYPT)
  181. #    cd ${.CURDIR}/eBones    &&    ${MAKE} ${.MAKEFLAGS} most
  182. #.endif
  183. #.if !defined(NOSECURE) && !defined(NOCRYPT)
  184. #    cd ${.CURDIR}/secure    &&    ${MAKE} ${.MAKEFLAGS} most
  185. #.endif
  186.  
  187. mk:
  188.     @echo "--------------------------------------------------------------"
  189.     @echo " Rebuilding ${DESTDIR}/usr/share/mk"
  190.     @echo "--------------------------------------------------------------"
  191.     cd ${.CURDIR}/share/mk &&        ${MAKE} install
  192.  
  193. includes:
  194.     @echo "--------------------------------------------------------------"
  195.     @echo " Rebuilding ${DESTDIR}/usr/include"
  196.     @echo "--------------------------------------------------------------"
  197.     @echo
  198. .if defined(CLOBBER)
  199.     rm -rf ${DESTDIR}/usr/include/*
  200.     mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
  201.         -p ${DESTDIR}/usr/include
  202. .endif
  203.     cd ${.CURDIR}/include &&        ${MAKE} install
  204.     cd ${.CURDIR}/gnu/include &&        ${MAKE}    install
  205.     cd ${.CURDIR}/gnu/lib/libreadline &&    ${MAKE} beforeinstall
  206.     cd ${.CURDIR}/gnu/lib/libregex &&    ${MAKE} beforeinstall
  207.     cd ${.CURDIR}/gnu/lib/libg++ &&         ${MAKE} beforeinstall
  208.     cd ${.CURDIR}/gnu/lib/libdialog &&      ${MAKE} beforeinstall
  209. .if exists(eBones) && !defined(NOCRYPT) && defined(MAKE_EBONES)
  210.     cd ${.CURDIR}/eBones/include &&        ${MAKE} beforeinstall
  211. .endif
  212.     cd ${.CURDIR}/lib/libc &&        ${MAKE} beforeinstall
  213.     cd ${.CURDIR}/lib/libcurses &&        ${MAKE} beforeinstall
  214.     cd ${.CURDIR}/lib/libedit &&        ${MAKE} beforeinstall
  215.     cd ${.CURDIR}/lib/libmd &&        ${MAKE} beforeinstall
  216.     cd ${.CURDIR}/lib/libmytinfo &&        ${MAKE}    beforeinstall
  217.     cd ${.CURDIR}/lib/libncurses &&        ${MAKE}    beforeinstall
  218. .if !defined(WANT_CSRG_LIBM)
  219.     cd ${.CURDIR}/lib/msun &&        ${MAKE} beforeinstall
  220. .endif
  221.     cd ${.CURDIR}/lib/libpcap &&        ${MAKE} beforeinstall
  222.     cd ${.CURDIR}/lib/librpcsvc &&        ${MAKE} beforeinstall
  223.     cd ${.CURDIR}/lib/libskey &&        ${MAKE} beforeinstall
  224.     cd ${.CURDIR}/lib/libtermcap &&        ${MAKE}    beforeinstall
  225.     cd ${.CURDIR}/lib/libcom_err &&        ${MAKE} beforeinstall
  226.     cd ${.CURDIR}/lib/libss &&        ${MAKE} beforeinstall
  227.     cd ${.CURDIR}/lib/libforms &&        ${MAKE}    beforeinstall
  228.     cd ${.CURDIR}/lib/libscsi &&        ${MAKE}    beforeinstall
  229.     cd ${.CURDIR}/lib/libftp &&        ${MAKE}    beforeinstall
  230.  
  231. lib-tools:
  232.     @echo "--------------------------------------------------------------"
  233.     @echo " Rebuilding tools needed to build the libraries"
  234.     @echo "--------------------------------------------------------------"
  235.     @echo
  236.     cd ${.CURDIR}/gnu/usr.bin/ld && \
  237.         ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
  238.     cd ${.CURDIR}/usr.bin/ar && \
  239.         ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
  240.     cd ${.CURDIR}/usr.bin/ranlib && \
  241.         ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
  242.     cd ${.CURDIR}/usr.bin/nm && \
  243.         ${MAKE} depend all install ${CLEANDIR} ${OBJDIR}
  244.     cd ${.CURDIR}/usr.bin/lex/lib && \
  245.         ${MAKE} depend all install ${CLEANDIR} ${OBJ