mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
550 lines
15 KiB
Makefile
550 lines
15 KiB
Makefile
# The contents of this file are subject to the Netscape Public
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
# except in compliance with the License. You may obtain a copy of
|
|
# the License at http://www.mozilla.org/NPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
# implied. See the License for the specific language governing
|
|
# rights and limitations under the License.
|
|
#
|
|
# The Original Code is mozilla.org code.
|
|
#
|
|
# The Initial Developer of the Original Code is Netscape
|
|
# Communications Corporation. Portions created by Netscape are
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
# Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
|
|
DEPTH=.
|
|
|
|
!if !defined(MOZ_TOP)
|
|
#enable builds from changed top level directories
|
|
MOZ_TOP=mozilla
|
|
!endif
|
|
|
|
MOZ_SRC_FLIPPED = $(MOZ_SRC:\=/)
|
|
MOZ_DIST_FLIPPED = $(MOZ_SRC_FLIPPED)/mozilla/dist
|
|
!ifdef MOZ_DEBUG
|
|
MOZ_OBJDIR = WIN32_D.OBJ
|
|
!else
|
|
MOZ_OBJDIR = WIN32_O.OBJ
|
|
!endif
|
|
|
|
#
|
|
# Command macro defines
|
|
#
|
|
|
|
#//------------------------------------------------------------------------
|
|
#// Figure out how to do the pull.
|
|
#//------------------------------------------------------------------------
|
|
# uncomment these, modify branch tag, and check in to branch for milestones
|
|
#MOZ_BRANCH=SeaMonkey_M17_BRANCH
|
|
#NSPR_CO_TAG=SeaMonkey_M17_BRANCH
|
|
#PSM_CO_TAG=SeaMonkey_M17_BRANCH
|
|
#NSS_CO_TAG=SeaMonkey_M17_BRANCH
|
|
#LDAPCSDK_CO_TAG=SeaMonkey_M17_BRANCH
|
|
#ACCESSIBLE_CO_TAG=SeaMonkey_M17_BRANCH
|
|
#IMGLIB2_CO_TAG=SeaMonkey_M17_BRANCH
|
|
#GFX2_CO_TAG=SeaMonkey_M17_BRANCH
|
|
|
|
|
|
!ifdef MOZ_BRANCH
|
|
CVS_BRANCH=-r $(MOZ_BRANCH)
|
|
HAVE_BRANCH=1
|
|
!else
|
|
HAVE_BRANCH=0
|
|
!endif
|
|
|
|
!ifdef MOZ_DATE
|
|
CVS_BRANCH=-D "$(MOZ_DATE)"
|
|
HAVE_DATE=1
|
|
!else
|
|
HAVE_DATE=0
|
|
!endif
|
|
|
|
!if $(HAVE_DATE) && $(HAVE_BRANCH)
|
|
ERR_MESSAGE=$(ERR_MESSAGE)^
|
|
Cannot specify both MOZ_BRANCH and MOZ_DATE
|
|
!endif
|
|
|
|
# default pull is "quiet" but it can be overridden with MOZ_CVS_VERBOSE
|
|
!ifndef MOZ_CVS_VERBOSE
|
|
CVS_FLAGS=-q
|
|
!endif
|
|
|
|
# honor any user-defined CVS flags
|
|
!ifdef MOZ_CVS_FLAGS
|
|
CVS_FLAGS=$(CVS_FLAGS) $(MOZ_CVS_FLAGS)
|
|
!endif
|
|
|
|
# let's be explicit about CVSROOT... some windows cvs clients
|
|
# are too stupid to correctly work without the -d option
|
|
#
|
|
# if they are too stupid, they should fail. I am
|
|
# commenting this out because this does not work
|
|
# under 4nt. (%'s are evaluted differently)
|
|
#
|
|
# If it breaks you, mail dougt@netscape.com
|
|
# and leaf@mozilla.org
|
|
#
|
|
!if 0
|
|
!if defined(CVSROOT)
|
|
CVS_FLAGS=$(CVS_FLAGS) -d "$(CVSROOT)"
|
|
!endif
|
|
!endif
|
|
|
|
!ifndef MOZ_CO_FLAGS
|
|
MOZ_CO_FLAGS = -P
|
|
!endif
|
|
|
|
CVSCO = cvs $(CVS_FLAGS) co $(MOZ_CO_FLAGS) $(CVS_BRANCH)
|
|
|
|
#//------------------------------------------------------------------------
|
|
#// Figure out how to pull NSPR.
|
|
#// If no NSPR_CO_TAG is specified, use the default static tag
|
|
#//------------------------------------------------------------------------
|
|
|
|
!ifndef NSPR_CO_FLAGS
|
|
NSPR_CO_FLAGS=$(MOZ_CO_FLAGS)
|
|
!endif
|
|
|
|
!if "$(NSPR_CO_TAG)" != ""
|
|
NSPR_CO_FLAGS=$(NSPR_CO_FLAGS) -r $(NSPR_CO_TAG)
|
|
!else
|
|
NSPR_CO_FLAGS=$(NSPR_CO_FLAGS) -r NSPRPUB_PRE_4_2_CLIENT_BRANCH
|
|
!endif
|
|
|
|
CVSCO_NSPR = cvs $(CVS_FLAGS) co $(NSPR_CO_FLAGS)
|
|
|
|
#//------------------------------------------------------------------------
|
|
#// Figure out how to pull NSS and PSM libs.
|
|
#// If no NSS_CO_TAG or PSM_CO_TAG is specified, use the default static tag
|
|
#//------------------------------------------------------------------------
|
|
|
|
!ifndef NSS_CO_FLAGS
|
|
NSS_CO_FLAGS=$(MOZ_CO_FLAGS)
|
|
!endif
|
|
|
|
!if "$(NSS_CO_TAG)" != ""
|
|
NSS_CO_FLAGS=$(NSS_CO_FLAGS) -r $(NSS_CO_TAG)
|
|
!else
|
|
NSS_CO_FLAGS=$(NSS_CO_FLAGS) -r NSS_CLIENT_TAG
|
|
!endif
|
|
|
|
CVSCO_NSS = cvs $(CVS_FLAGS) co $(NSS_CO_FLAGS)
|
|
|
|
!ifndef PSM_CO_FLAGS
|
|
PSM_CO_FLAGS=$(MOZ_CO_FLAGS)
|
|
!endif
|
|
|
|
!if "$(PSM_CO_TAG)" != ""
|
|
PSM_CO_FLAGS=$(PSM_CO_FLAGS) -r $(PSM_CO_TAG)
|
|
!else
|
|
PSM_CO_FLAGS=$(PSM_CO_FLAGS) $(CVS_BRANCH)
|
|
!endif
|
|
|
|
CVSCO_PSM = cvs $(CVS_FLAGS) co $(PSM_CO_FLAGS)
|
|
|
|
#//------------------------------------------------------------------------
|
|
#// Figure out how to pull LDAP C SDK client libs.
|
|
#// If no LDAPCSDK_CO_TAG is specified, use the default tag
|
|
#//------------------------------------------------------------------------
|
|
|
|
|
|
!ifndef LDAPCSDK_CO_FLAGS
|
|
LDAPCSDK_CO_FLAGS=$(MOZ_CO_FLAGS)
|
|
!endif
|
|
|
|
!if "$(LDAPCSDK_CO_TAG)" != ""
|
|
LDAPCSDK_CO_FLAGS=$(LDAPCSDK_CO_FLAGS) -r $(LDAPCSDK_CO_TAG)
|
|
!else
|
|
LDAPCSDK_CO_FLAGS=$(LDAPCSDK_CO_FLAGS) -r ldapcsdk_50_client_branch
|
|
!endif
|
|
|
|
CVSCO_LDAPCSDK = cvs $(CVS_FLAGS) co $(LDAPCSDK_CO_FLAGS)
|
|
|
|
#//------------------------------------------------------------------------
|
|
#// Figure out how to pull accessibility libs.
|
|
#// If no ACCESSIBLE_CO_TAG is specified, use the default tag
|
|
#//------------------------------------------------------------------------
|
|
|
|
!ifndef ACCESSIBLE_CO_FLAGS
|
|
ACCESSIBLE_CO_FLAGS=$(MOZ_CO_FLAGS)
|
|
!endif
|
|
|
|
!if "$(ACCESSIBLE_CO_TAG)" != ""
|
|
ACCESSIBLE_CO_FLAGS=$(ACCESSIBLE_CO_FLAGS) -r $(ACCESSIBLE_CO_TAG)
|
|
!else
|
|
ACCESSIBLE_CO_FLAGS=$(ACCESSIBLE_CO_FLAGS) $(CVS_BRANCH)
|
|
!endif
|
|
|
|
CVSCO_ACCESSIBLE = cvs $(CVS_FLAGS) co $(ACCESSIBLE_CO_FLAGS)
|
|
|
|
#//------------------------------------------------------------------------
|
|
#// Figure out how to pull new image library.
|
|
#// If no IMGLIB2_CO_TAG is specified, use the default tag
|
|
#//------------------------------------------------------------------------
|
|
|
|
!ifndef IMGLIB2_CO_FLAGS
|
|
IMGLIB2_CO_FLAGS=$(MOZ_CO_FLAGS)
|
|
!endif
|
|
|
|
!if "$(IMGLIB2_CO_TAG)" != ""
|
|
IMGLIB2_CO_FLAGS=$(IMGLIB2_CO_FLAGS) -r $(IMGLIB2_CO_TAG)
|
|
!else
|
|
IMGLIB2_CO_FLAGS=$(IMGLIB2_CO_FLAGS) $(CVS_BRANCH)
|
|
!endif
|
|
|
|
CVSCO_IMGLIB2 = cvs $(CVS_FLAGS) co $(IMGLIB2_CO_FLAGS)
|
|
|
|
#//------------------------------------------------------------------------
|
|
#// Figure out how to pull new image library.
|
|
#// If no GFX2_CO_TAG is specified, use the default tag
|
|
#//------------------------------------------------------------------------
|
|
|
|
!ifndef GFX2_CO_FLAGS
|
|
GFX2_CO_FLAGS=$(MOZ_CO_FLAGS)
|
|
!endif
|
|
|
|
!if "$(GFX2_CO_TAG)" != ""
|
|
GFX2_CO_FLAGS=$(GFX2_CO_FLAGS) -r $(GFX2_CO_TAG)
|
|
!else
|
|
GFX2_CO_FLAGS=$(GFX2_CO_FLAGS) $(CVS_BRANCH)
|
|
!endif
|
|
|
|
CVSCO_GFX2 = cvs $(CVS_FLAGS) co $(GFX2_CO_FLAGS)
|
|
|
|
#//------------------------------------------------------------------------
|
|
#// Figure out how to pull the internal libart
|
|
#// (only pulled and built if MOZ_INTERNAL_LIBART_LGPL is set)
|
|
#// If no MOZ_INTERNAL_LIBART_CO_TAG is specified, use the default tag
|
|
#//------------------------------------------------------------------------
|
|
|
|
!if defined(MOZ_SVG) && !defined(MOZ_INTERNAL_LIBART_LGPL)
|
|
ERR_MESSAGE = ^
|
|
You are trying to build Mozilla with SVG support (MOZ_SVG=1), but you ^
|
|
haven not specified that mozilla/other-licenses/libart_lgpl should be ^
|
|
pulled and built. At the moment Mozilla SVG builds need this patched ^
|
|
version of libart. You either need to disable SVG support (unset MOZ_SVG) ^
|
|
or enable pulling and building by setting MOZ_INTERNAL_LIBART_LGPL=1.^
|
|
^
|
|
If you choose to pull and build libart, note that it is only licensed^
|
|
under the terms of the LGPL, not the MPL. (Which is why you have to opt^
|
|
in explicitly.)
|
|
!endif
|
|
|
|
!if defined(MOZ_INTERNAL_LIBART_LGPL)
|
|
|
|
!ifndef MOZ_INTERNAL_LIBART_CO_FLAGS
|
|
MOZ_INTERNAL_LIBART_CO_FLAGS=$(MOZ_CO_FLAGS)
|
|
!endif
|
|
|
|
!if "$(MOZ_INTERNAL_LIBART_CO_TAG)" != ""
|
|
MOZ_INTERNAL_LIBART_CO_FLAGS=$(MOZ_INTERNAL_LIBART_CO_FLAGS) -r $(MOZ_INTERNAL_LIBART_CO_TAG)
|
|
!else
|
|
MOZ_INTERNAL_LIBART_CO_FLAGS=$(MOZ_INTERNAL_LIBART_CO_FLAGS) $(CVS_BRANCH)
|
|
!endif
|
|
|
|
CVSCO_MOZ_INTERNAL_LIBART = cvs $(CVS_FLAGS) co $(MOZ_INTERNAL_LIBART_CO_FLAGS)
|
|
|
|
!endif
|
|
|
|
## The master target
|
|
############################################################
|
|
|
|
pull_and_build_all: pull_all build_all_dep
|
|
|
|
|
|
## Rules for pulling the source from the cvs repository
|
|
############################################################
|
|
|
|
pull_clobber_and_build_all: pull_all clobber_all build_all
|
|
|
|
!if !defined(MOZ_INTERNAL_LIBART_LGPL)
|
|
pull_all: pull_nspr pull_psm pull_ldapcsdk pull_accessible pull_gfx2 pull_imglib2 pull_seamonkey
|
|
!else
|
|
pull_all: pull_nspr pull_psm pull_ldapcsdk pull_accessible pull_gfx2 pull_imglib2 pull_moz_internal_libart pull_seamonkey
|
|
!endif
|
|
|
|
pull_nspr: pull_clientmak
|
|
cd $(MOZ_SRC)\.
|
|
$(CVSCO_NSPR) mozilla/nsprpub
|
|
|
|
pull_nss:
|
|
cd $(MOZ_SRC)\.
|
|
$(CVSCO_NSS) mozilla/security/coreconf
|
|
$(CVSCO_NSS) mozilla/security/nss
|
|
|
|
pull_psm: pull_nss
|
|
cd $(MOZ_SRC)\.
|
|
$(CVSCO_PSM) mozilla/security/manager
|
|
$(CVSCO_PSM) mozilla/security/makefile.win
|
|
|
|
pull_ldapcsdk:
|
|
cd $(MOZ_SRC)\.
|
|
$(CVSCO_LDAPCSDK) mozilla/directory/c-sdk
|
|
|
|
pull_accessible:
|
|
cd $(MOZ_SRC)\.
|
|
$(CVSCO_ACCESSIBLE) mozilla/accessible
|
|
|
|
pull_gfx2:
|
|
cd $(MOZ_SRC)\.
|
|
$(CVSCO_GFX2) mozilla/gfx2
|
|
|
|
pull_imglib2:
|
|
cd $(MOZ_SRC)\.
|
|
$(CVSCO_IMGLIB2) mozilla/modules/libpr0n
|
|
|
|
!if defined(MOZ_INTERNAL_LIBART_LGPL)
|
|
pull_moz_internal_libart:
|
|
cd $(MOZ_SRC)\.
|
|
$(CVSCO_MOZ_INTERNAL_LIBART) mozilla/other-licenses/libart_lgpl
|
|
!endif
|
|
|
|
pull_xpconnect: pull_nspr
|
|
cd $(MOZ_SRC)\.
|
|
$(CVSCO) mozilla/include
|
|
$(CVSCO) mozilla/config
|
|
$(CVSCO) -l mozilla/js
|
|
$(CVSCO) -l mozilla/js/src
|
|
$(CVSCO) mozilla/js/src/fdlibm
|
|
$(CVSCO) mozilla/js/src/xpconnect
|
|
$(CVSCO) mozilla/modules/libreg
|
|
$(CVSCO) mozilla/xpcom
|
|
$(CVSCO) mozilla/string
|
|
|
|
# pull either layout only or seamonkey the browser
|
|
pull_layout:
|
|
cd $(MOZ_SRC)\.
|
|
$(CVSCO) RaptorWin
|
|
|
|
pull_seamonkey: pull_clientmak
|
|
cd $(MOZ_SRC)\.
|
|
$(CVSCO) SeaMonkeyAll
|
|
|
|
pull_clientmak:
|
|
cd $(MOZ_SRC)\.
|
|
$(CVSCO) mozilla/client.mak
|
|
|
|
############################################################
|
|
|
|
# nmake has to be hardcoded, or we have to depend on mozilla/config
|
|
# being pulled already to figure out what $(NMAKE) should be.
|
|
|
|
clobber_all: clobber_nspr clobber_ldapcsdk clobber_psm clobber_seamonkey
|
|
|
|
build_all: build_nspr build_ldapcsdk build_seamonkey
|
|
|
|
build_all_dep: depend libs
|
|
|
|
distclean:
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\directory\c-sdk
|
|
gmake -f gmakefile.win distclean MOZ_SRC_FLIPPED=$(MOZ_SRC_FLIPPED)
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\nsprpub
|
|
gmake -f gmakefile.win distclean MOZ_SRC_FLIPPED=$(MOZ_SRC_FLIPPED)
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)
|
|
nmake /f client.mak clobber_psm
|
|
nmake /f client.mak clobber_seamonkey
|
|
|
|
clobber_ldapcsdk:
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\directory\c-sdk
|
|
gmake -f gmakefile.win clobber_all MOZ_SRC_FLIPPED=$(MOZ_SRC_FLIPPED) \
|
|
SHELL=sh
|
|
|
|
clobber_nspr:
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\nsprpub
|
|
gmake -f gmakefile.win clobber_all MOZ_SRC_FLIPPED=$(MOZ_SRC_FLIPPED)
|
|
|
|
clobber_psm:
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\security
|
|
nmake -f makefile.win clobber_all
|
|
|
|
clobber_xpconnect:
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\.
|
|
-rd /s /q dist
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\nsprpub
|
|
gmake -f gmakefile.win clobber_all MOZ_SRC_FLIPPED=$(MOZ_SRC_FLIPPED)
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\include
|
|
nmake -f makefile.win clobber_all
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\modules\libreg
|
|
nmake -f makefile.win clobber_all
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\string
|
|
nmake -f makefile.win clobber_all
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\xpcom
|
|
nmake -f makefile.win clobber_all
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\js
|
|
nmake -f makefile.win clobber_all
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\js\src\xpconnect
|
|
nmake -f makefile.win clobber_all
|
|
|
|
clobber_seamonkey:
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\.
|
|
-rd /s /q dist
|
|
nmake -f makefile.win clobber_all
|
|
|
|
depend: export
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\.
|
|
nmake -f makefile.win depend
|
|
|
|
depend_xpconnect:
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\include
|
|
nmake -f makefile.win depend
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\modules\libreg
|
|
nmake -f makefile.win depend
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\string
|
|
nmake -f makefile.win depend
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\xpcom
|
|
nmake -f makefile.win depend
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\js\src
|
|
nmake -f makefile.win depend
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\js\src\xpconnect
|
|
nmake -f makefile.win depend
|
|
|
|
build_nspr:
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\nsprpub
|
|
gmake -f gmakefile.win MOZ_SRC_FLIPPED=$(MOZ_SRC_FLIPPED)
|
|
|
|
build_ldapcsdk:
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\directory\c-sdk
|
|
gmake -f gmakefile.win MOZ_SRC_FLIPPED=$(MOZ_SRC_FLIPPED) SHELL=sh
|
|
|
|
build_psm:
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\security
|
|
nmake -f makefile.win
|
|
|
|
build_xpconnect: build_nspr
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\include
|
|
nmake -f makefile.win all
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\modules\libreg
|
|
nmake -f makefile.win all
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\xpcom
|
|
nmake -f makefile.win export
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\string
|
|
nmake -f makefile.win all
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\xpcom
|
|
nmake -f makefile.win libs
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\js\src
|
|
nmake -f makefile.win all
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\js\src\xpconnect
|
|
nmake -f makefile.win all
|
|
|
|
build_seamonkey:
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\.
|
|
nmake -f makefile.win all
|
|
|
|
build_client:
|
|
@cd $(MOZ_SRC)\mozilla\.
|
|
nmake -f makefile.win all
|
|
|
|
build_layout:
|
|
@cd $(MOZ_SRC)\mozilla\.
|
|
nmake -f makefile.win all
|
|
|
|
build_dist:
|
|
@cd $(MOZ_SRC)\mozilla\.
|
|
nmake -f makefile.win all
|
|
|
|
libs:
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\.
|
|
nmake -f makefile.win libs
|
|
|
|
export: build_nspr build_ldapcsdk
|
|
@cd $(MOZ_SRC)\$(MOZ_TOP)\.
|
|
nmake -f makefile.win export
|
|
|
|
clobber_dist:
|
|
@cd $(MOZ_SRC)\mozilla\.
|
|
nmake -f makefile.win clobber_all
|
|
|
|
clobber_client:
|
|
@cd $(MOZ_SRC)\mozilla\.
|
|
nmake -f makefile.win clobber_all
|
|
|
|
clobber_layout:
|
|
@cd $(MOZ_SRC)\mozilla\.
|
|
nmake -f makefile.win clobber_all
|
|
|
|
browse_info::
|
|
cd $(MOZ_SRC)\$(MOZ_TOP)
|
|
-dir /s /b *.sbr > sbrlist.tmp
|
|
-bscmake /Es /o mozilla.bsc @sbrlist.tmp
|
|
-rm sbrlist.tmp
|
|
|
|
regchrome::
|
|
@cd $(MOZ_SRC)\mozilla\.
|
|
nmake /f makefile.win regchrome
|
|
|
|
deliver::
|
|
@cd $(MOZ_SRC)\mozilla\.
|
|
nmake /f makefile.win splitsymbols
|
|
|
|
#//------------------------------------------------------------------------
|
|
#// Utility stuff...
|
|
#//------------------------------------------------------------------------
|
|
|
|
#//------------------------------------------------------------------------
|
|
# Verify that MOZ_SRC is set correctly
|
|
#//------------------------------------------------------------------------
|
|
|
|
# Check to see if it is set at all
|
|
!if "$(MOZ_SRC)"==""
|
|
MOZ_SRC = $(MAKEDIR)\..
|
|
!endif
|
|
|
|
#
|
|
# create a temp file at the root and make sure it is visible from MOZ_SRC
|
|
#
|
|
!if [copy $(MAKEDIR)\client.mak $(MAKEDIR)\xyzzy.tmp > NUL] == 0
|
|
!endif
|
|
|
|
!if !EXIST( $(MOZ_SRC)\mozilla\xyzzy.tmp )
|
|
ERR_MESSAGE=$(ERR_MESSAGE)^
|
|
MOZ_SRC isn't set correctly: [$(MOZ_SRC)\mozilla]!=[$(MAKEDIR)]
|
|
!endif
|
|
|
|
!if [del $(MAKEDIR)\xyzzy.tmp]
|
|
!endif
|
|
|
|
#//------------------------------------------------------------------------
|
|
# Verify that MOZ_BITS is set
|
|
#//------------------------------------------------------------------------
|
|
!if !defined(MOZ_BITS)
|
|
ERR_MESSAGE=$(ERR_MESSAGE)^
|
|
Environment variable MOZ_BITS isn't set.
|
|
!endif
|
|
|
|
!if !defined(MOZ_TOOLS)
|
|
ERR_MESSAGE=$(ERR_MESSAGE)^
|
|
Environment variable MOZ_TOOLS isn't set.
|
|
!endif
|
|
|
|
|
|
#//------------------------------------------------------------------------
|
|
#// Display error
|
|
#//------------------------------------------------------------------------
|
|
|
|
!if "$(ERR_MESSAGE)" != ""
|
|
ERR_MESSAGE = ^
|
|
client.mak: ^
|
|
$(ERR_MESSAGE) ^
|
|
^
|
|
client.mak: usage^
|
|
^
|
|
nmake -f client.mak [MOZ_BRANCH=<cvs_branch_name>] ^
|
|
[MOZ_DATE=<cvs_date>]^
|
|
[pull_and_build_all]^
|
|
[pull_all]^
|
|
[build_all]^
|
|
^
|
|
Environment variables:^
|
|
^
|
|
MOZ_BITS set to 32^
|
|
MOZ_TOOLS set to the directory containing the needed tools ^
|
|
|
|
!ERROR $(ERR_MESSAGE)
|
|
|
|
!endif
|