Re: Win32 rebuild?

John Bandhauer <[email protected]> Sat, 04 May 2002 18:58:27 -0700
Newsgroups gmane.comp.mozilla.builds
Organization minions of mozilla
Message-ID <[email protected]>
Parish wrote:
> Jonathan Wilson wrote:
> 
>> D. Alvarado wrote:
>>
>>> Hi,
>>>    I was just wondering how I could rebuild my Win32 Mozilla project. 
>>> The statement:
>>>
>>> nmake -f client.mak build_all,
>>> builds everything initiallky, but then typing the statement again does
>>> get re-build things.  I guess the build notices some files are current
>>> and just doesn't re-compile.  HOw can I avoid this behavior?
>>>
>>> Thanks, Dave
>>
>>
>> I think what you want is to type nmake -f client.mak clean which will 
>> remove all the obj files and rebuild everything.
>>
> 
> Or nmake -f clobber_all build_all

Almost.

  nmake -f client.mak clobber_all build_all_dep

John.