From 7834a5c28724033b74cbd96075da6015e0c33e54 Mon Sep 17 00:00:00 2001 From: "leaf%mozilla.org" Date: Mon, 1 Mar 1999 20:16:01 +0000 Subject: [PATCH] Fixing the dependency on mozilla/config (yanked the include, removed the $(NMAKE) references. Approved: sar --- client.mak | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/client.mak b/client.mak index e9ac3e851143..988ecb9078df 100644 --- a/client.mak +++ b/client.mak @@ -66,9 +66,6 @@ CVSCO_RAPTOR = $(CVSCO) CVSCO_LIZARD = $(CVSCO) CVSCO_NETWORK = $(CVSCO) -# rules.mak include config.mak -include <$(DEPTH)\config\config.mak> - ## The master target ############################################################ @@ -89,14 +86,17 @@ pull_seamonkey: ############################################################ +# nmake has to be hardcoded, or we have to depend on mozilla/config +# being pulled already to figure out what $(NMAKE) should be. + clobber_all: @cd $(MOZ_SRC)\$(MOZ_TOP)\. - $(NMAKE) -f makefile.win clobber_all + nmake -f makefile.win clobber_all depend: @cd $(MOZ_SRC)\$(MOZ_TOP)\. - $(NMAKE) -f makefile.win depend + nmake -f makefile.win depend build_all: @cd $(MOZ_SRC)\mozilla\. - $(NMAKE) -f makefile.win all + nmake -f makefile.win all