From 5748a66d65fd1a7f5c029c7f7fdd1a4de227d13a Mon Sep 17 00:00:00 2001 From: "danm%netscape.com" Date: Mon, 3 Aug 1998 21:29:18 +0000 Subject: [PATCH] adding (optional) glowcode build stuff git-svn-id: svn://10.0.0.236/trunk@7145 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/base/src/makefile.win | 4 ++++ mozilla/base/tests/makefile.win | 3 +++ 2 files changed, 7 insertions(+) diff --git a/mozilla/base/src/makefile.win b/mozilla/base/src/makefile.win index 1976497e597..434ca1807cb 100644 --- a/mozilla/base/src/makefile.win +++ b/mozilla/base/src/makefile.win @@ -83,6 +83,10 @@ LLIBS= \ $(DIST)\lib\xpcom32.lib \ $(DIST)\lib\libplc21.lib \ $(LIBNSPR) +!if "$(MOZ_BITS)"=="32" && defined(MOZ_DEBUG) && defined(GLOWCODE) +LLIBS=$(LLIBS) $(GLOWDIR)\glowcode.lib +!endif + include <$(DEPTH)\config\rules.mak> diff --git a/mozilla/base/tests/makefile.win b/mozilla/base/tests/makefile.win index 6f8a72ed17c..6275134d5e5 100644 --- a/mozilla/base/tests/makefile.win +++ b/mozilla/base/tests/makefile.win @@ -40,6 +40,9 @@ LLIBS= \ !endif $(LIBNSPR) \ $(DIST)\lib\libplc21.lib \ +!if "$(MOZ_BITS)"=="32" && defined(MOZ_DEBUG) && defined(GLOWCODE) + $(GLOWDIR)\glowcode.lib \ +!endif $(RESFILE) include <$(DEPTH)\config\rules.mak>