Discussion:
Win32 rebuild?
Jonathan Wilson
2002-05-05 01:25:01 UTC
Permalink
Hi,
I was just wondering how I could rebuild my Win32 Mozilla project.
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.
John Bandhauer
2002-05-05 01:58:27 UTC
Permalink
Post by Jonathan Wilson
Hi,
I was just wondering how I could rebuild my Win32 Mozilla project.
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.

Loading...