From 044ced414bd501180c24e013d76e8ba6f84e1343 Mon Sep 17 00:00:00 2001 From: "tbogard%aol.net" Date: Thu, 10 Feb 2000 04:51:54 +0000 Subject: [PATCH] Added the ability to run doing "nmake -f client.mak export" or "nmake -f client.mak install" to target a specific portion of the build pass. r=leaf --- client.mak | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/client.mak b/client.mak index 8db1be18f35a..79684807d37d 100644 --- a/client.mak +++ b/client.mak @@ -180,6 +180,22 @@ build_dist: set DIST_DIRS=1 nmake -f makefile.win all +install: + @cd $(MOZ_SRC)\$(MOZ_TOP)\. + set DIST_DIRS=1 + set LAYOUT_DIRS=1 + set CLIENT_DIRS=1 + nmake -f makefile.win install + +export: + @cd $(MOZ_SRC)\$(MOZ_TOP)\nsprpub + nmake -f makefile.win export + @cd $(MOZ_SRC)\$(MOZ_TOP)\. + set DIST_DIRS=1 + set LAYOUT_DIRS=1 + set CLIENT_DIRS=1 + nmake -f makefile.win export + clobber_dist: @cd $(MOZ_SRC)\mozilla\. set DIST_DIRS=1