Diff for /src/nrelease/Makefile between versions 1.3 and 1.4

version 1.3, 2003/12/01 19:12:25 version 1.4, 2003/12/01 19:32:56
Line 6  ISOROOT = ${ISODIR}/root Line 6  ISOROOT = ${ISODIR}/root
 OBJSYS= ${.OBJDIR}/../sys  OBJSYS= ${.OBJDIR}/../sys
 KERNCONF ?= GENERIC  KERNCONF ?= GENERIC
   
 #.if !exists(/usr/local/bin/mkisofs)  release:        check clean buildworld1 buildkernel1 buildiso mkiso
 #.error "You need to install the mkisofs port so I can build the ISO"  
 #.endif  
 #.if !exists(/usr/local/bin/cvsup)  
 #.error "You need to install the cvsup port so I can put cvsup in the ISO"  
 #.endif  
   
 release:        clean buildworld1 buildkernel1 buildiso mkiso  quickrel:       check clean buildworld2 buildkernel2 buildiso mkiso
   
 quickrel:       clean buildworld2 buildkernel2 buildiso mkiso  realquickrel:   check clean buildiso mkiso
   
 realquickrel:   clean buildiso mkiso  check:
           if [ ! -f /usr/local/bin/mkisofs ]; then \
                   echo "You need to install the mkisofs port for this target"; \
                   exit 1; fi
           if [ ! -f /usr/local/bin/cvsup ]; then \
                   echo "You need to install the cvsup port for this target"; \
                   exit 1; fi
   
 buildworld1:  buildworld1:
         ( cd ${.CURDIR}/..; make buildworld )          ( cd ${.CURDIR}/..; make buildworld )

Removed from v.1.3  
changed lines
  Added in v.1.4