Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Feb 1995 08:31:52 +0100
From:      "Philippe Charnier" <charnier@lirmm.fr>
To:        Morgan Davis <root@io.cts.com>
Cc:        hackers@FreeBSD.org
Subject:   Re: resuming make world 
Message-ID:  <199502120732.IAA00472@lirmm.lirmm.fr>
In-Reply-To: Your message of "Sat, 11 Feb 1995 11:57:41 PST." <199502111957.LAA18292@io.cts.com> 

next in thread | previous in thread | raw e-mail | index | archive | help
Salut,

In the message resuming make world,
Morgan Davis <root@io.cts.com> wrote :

>Now, my question.  What's the best way to resume an interrupted 'make
>world' so that I don't have to start from scratch, and that it
>completes pretty much as if 'make world' had never stopped?  I see no
>obvious make target for this.  I assume I can do this:
>
>	cd /usr/src
>	make
>	make install
>	cd /usr/share/man
>	make makedb
>

in /usr/src/Makefile

  .if defined(NOCLEANDIR)
+ .if defined(NOCLEAN)
+ CLEANDIR=
+ .else
  CLEANDIR=       clean
+ .endif
  .else 
  CLEANDIR=       cleandir
  .endif

Then define NOCLEAN and run make world again.

--------                                                        --------
Philippe Charnier                                      charnier@lirmm.fr
                               

         LIRMM, 161 rue Ada, 34392 Montpellier cedex 5 -- France
------------------------------------------------------------------------




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199502120732.IAA00472>