From d823abaaa309a5ab9aa5bf9e90ff1207c33bf4c2 Mon Sep 17 00:00:00 2001 From: "akkana%netscape.com" Date: Thu, 31 Dec 1998 00:18:40 +0000 Subject: [PATCH] Only build editor if MOZ_EDITOR is defined git-svn-id: svn://10.0.0.236/trunk@17019 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/editor/makefile.win | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mozilla/editor/makefile.win b/mozilla/editor/makefile.win index 418b09dfa51..60eb65b5b0c 100644 --- a/mozilla/editor/makefile.win +++ b/mozilla/editor/makefile.win @@ -18,6 +18,10 @@ DEPTH=.. IGNORE_MANIFEST=1 -DIRS=public core guimgr txmgr +!if defined(MOZ_EDITOR) +DIRS= public core guimgr txmgr +!else +DIRS= public +!endif include <$(DEPTH)\config\rules.mak>