From 03c2e00d032245239ca2b50aea6564ff49d0ff82 Mon Sep 17 00:00:00 2001 From: "warren%netscape.com" Date: Fri, 11 Aug 2000 00:47:03 +0000 Subject: [PATCH] Fixed bustage for chrome:: rule git-svn-id: svn://10.0.0.236/trunk@76063 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/config/rules.mak | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/mozilla/config/rules.mak b/mozilla/config/rules.mak index c1b3e7e94ce..fb1b2195cf2 100644 --- a/mozilla/config/rules.mak +++ b/mozilla/config/rules.mak @@ -722,7 +722,7 @@ clobber_all:: !endif !endif - +################################################################################ # Generate chrome building rules. # # You need to set these in your makefile.win to utilize this support: @@ -745,6 +745,9 @@ clobber_all:: # Top-level makefiles (the same one copying the rdf manifests # and generating the jar file) should define this macro. # This will notify the chrome registry of a new installation. + +chrome:: + !if "$(CHROME_DIR)" != "$(NULL)" # Figure out root of chrome dist dir. @@ -865,17 +868,6 @@ chrome:: !endif !endif # chrome - -!endif # CONFIG_RULES_MAK - -# Easier than typing it by hand, works from any directory: -debug:: - start msdev $(DIST)\bin\mozilla.exe - -# Easier than typing it by hand, works from any directory: -run:: - $(DIST)\bin\mozilla.exe - ################################################################################ ## JAR Manifests @@ -902,3 +894,15 @@ chrome:: install:: chrome ################################################################################ + +# Easier than typing it by hand, works from any directory: +debug:: + start msdev $(DIST)\bin\mozilla.exe + +# Easier than typing it by hand, works from any directory: +run:: + $(DIST)\bin\mozilla.exe + +################################################################################ +!endif # CONFIG_RULES_MAK +################################################################################