diff options
author | ru <ru@FreeBSD.org> | 2002-04-29 15:22:01 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-04-29 15:22:01 +0000 |
commit | be388967d49051b9d564f80471e478cc2db10287 (patch) | |
tree | de87957d0425f5e000039812a9a7be1d17562832 /Makefile | |
parent | 70fd7e0ff2cd33dcf1a1ad7b60693a1d36c7e1bf (diff) | |
download | FreeBSD-src-be388967d49051b9d564f80471e478cc2db10287.zip FreeBSD-src-be388967d49051b9d564f80471e478cc2db10287.tar.gz |
Parallel "make release" fixes.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -84,10 +84,15 @@ # TGTS= all all-man buildkernel buildworld checkdpadd clean \ cleandepend cleandir depend distribute distribworld everything \ - hierarchy includes install installcheck installkernel kernel \ + hierarchy includes install installcheck installkernel \ reinstallkernel installmost installworld libraries lint \ mk most obj objlink regress rerelease tags update +.ORDER: buildworld installworld +.ORDER: buildworld distribworld +.ORDER: buildkernel installkernel +.ORDER: buildkernel reinstallkernel + PATH= /sbin:/bin:/usr/sbin:/usr/bin MAKE= PATH=${PATH} make -m ${.CURDIR}/share/mk -f Makefile.inc1 @@ -134,6 +139,13 @@ world: upgrade_checks @echo "--------------------------------------------------------------" # +# kernel +# +# Short hand for `make buildkernel installkernel' +# +kernel: buildkernel installkernel + +# # Perform a few tests to determine if the installed tools are adequate # for building the world. These are for older systems (prior to 2.2.5). # |