From 5393e638a0dabab0b33ccca9d0f5f79708efad8a Mon Sep 17 00:00:00 2001 From: "edburns%acm.org" Date: Wed, 8 Mar 2000 19:17:16 +0000 Subject: [PATCH] For win32 builds. If you define WEBCLIENT_SPEC=1 in your environment before building webclient, the spec-compliant version of webclient will be built. git-svn-id: svn://10.0.0.236/trunk@62401 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/java/webclient/Makefile.win | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/mozilla/java/webclient/Makefile.win b/mozilla/java/webclient/Makefile.win index 686e2afd602..a2cbb1960c1 100644 --- a/mozilla/java/webclient/Makefile.win +++ b/mozilla/java/webclient/Makefile.win @@ -35,8 +35,15 @@ IGNORE_MANIFEST=1 #//------------------------------------------------------------------------ DEPTH = ..\.. +!if defined(WEBCLIENT_SPEC) +DIRS = classes_spec \ + src_moz +!else DIRS = classes \ src +!endif + + include <$(DEPTH)\config\rules.mak>