gecko-dev/client.mk

97 строки
2.6 KiB
Makefile
Исходник Обычный вид История

1998-11-06 11:39:52 +03:00
#!gmake
# The contents of this file are subject to the Netscape Public License
# Version 1.0 (the "NPL"); you may not use this file except in
# compliance with the NPL. You may obtain a copy of the NPL at
# http://www.mozilla.org/NPL/
#
# Software distributed under the NPL is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
# for the specific language governing rights and limitations under the
# NPL.
#
# The Initial Developer of this code under the NPL is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
# Build the Mozilla client.
#
# This needs CVSROOT set to work, e.g.
1998-11-06 12:06:37 +03:00
# setenv CVSROOT :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
# --or--
1998-11-06 11:39:52 +03:00
# setenv CVSROOT :pserver:$(USER)%netscape.com@cvs.mozilla.org:/cvsroot
1998-11-06 12:06:37 +03:00
#
1998-11-06 11:39:52 +03:00
# Usage:
# Pull the source:
# cvs update mozilla/client.mk
# gmake -f mozilla/client.mk checkout
#
1998-11-06 12:06:37 +03:00
# Build NSPR, maybe only once:
# gmake -f mozilla/client.mk nspr
#
# Build the client:
# gmake -f mozilla/client.mk build
#
1998-11-06 11:39:52 +03:00
DEPTH=mozilla
# Allow for cvs flags
ifndef CVS_FLAGS
CVS_CFLAGS = -q -z 3
endif
CVSCO = cvs $(CVS_FLAGS) co -P
#MAKE = gmake
1998-11-06 11:39:52 +03:00
AUTOCONF = autoconf
TARGETS = export libs install
MKDIR = mkdir
SH = /bin/sh
ifndef MOZ_TOOLKIT
MOZ_TOOLKIT = USE_DEFAULT
endif
ifdef NSPR_INSTALL_DIR
NSPR_CONFIG_FLAG = --with-nspr=$(NSPR_INSTALL_DIR)
endif
1998-11-06 11:39:52 +03:00
all: checkout
.PHONY: checkout
# List branches here.
#
checkout:
# Pull the core layout stuff.
$(CVSCO) mozilla/nglayout.mk
(cd mozilla; $(MAKE) -f nglayout.mk pull_all)
# Pull xpfe
$(CVSCO) mozilla/xpfe
# Build with autoconf
configure: mozilla/configure.in
1998-11-10 01:28:28 +03:00
autoobjdir=obj-$(shell mozilla/build/autoconf/config.guess); \
echo autoobjdir = $$autoobjdir; \
(cd mozilla; $(AUTOCONF)); \
if test ! -d mozilla/$$autoobjdir; then $(MKDIR) mozilla/$$autoobjdir; fi; \
(cd mozilla/$$autoobjdir; LD_LIBRARY_PATH=$(LD_LIBRARY_PATH):$(NSPR_INSTALL_DIR)/lib ../configure $(NSPR_CONFIG_FLAG) --enable-toolkit=$(MOZ_TOOLKIT)); \
1998-11-06 11:39:52 +03:00
mozilla/configure: mozilla/configure.in
$(MAKE) -f mozilla/client.mk configure
build: mozilla/configure
autoobjdir=obj-$(shell mozilla/build/autoconf/config.guess); \
echo autoobjdir = $$autoobjdir; \
1998-11-10 04:16:42 +03:00
(cd mozilla/$$autoobjdir; $(MAKE)); \
# (cd mozilla/$$autoobjdir; $(MAKE) depend); \
1998-11-06 11:39:52 +03:00
# Build & install nspr. Classic build, no autoconf.
# Linux/RPM available.
nspr: $(NSPR_INSTALL_DIR)/lib/libnspr21.so
$(NSPR_INSTALL_DIR)/lib/libnspr21.so:
1998-11-10 01:03:24 +03:00
($(MAKE) -C mozilla/nsprpub DIST=$(NSPR_INSTALL_DIR) NSDISTMODE=copy NS_USE_GCC=1 MOZILLA_CLIENT=1 NO_MDUPDATE=1 NS_USE_NATIVE= )
1998-11-06 11:39:52 +03:00