gecko-dev/client.mk

277 строки
6.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.,
# setenv CVSROOT :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
# or
# setenv CVSROOT :pserver:username%somedomain.org@cvs.mozilla.org:/cvsroot
1998-11-06 12:06:37 +03:00
#
1998-11-06 11:39:52 +03:00
# Usage:
#
# To checkout and build a new tree,
# cvs checkout mozilla/client.mk
# gmake -f mozilla/client.mk
# To checkout (update) and build an existing tree,
# gmake -f mozilla/client.mk
# To only checkout, configure, or build,
# gmake -f mozilla/client.mk [checkout] [configure] [build]
1998-11-06 12:06:37 +03:00
#
# See http://www.mozilla.org/unix/ for more information.
1998-11-06 12:06:37 +03:00
#
# Options:
# NSPR_INSTALL_DIR - nspr directory for configure --with-nspr=
# USE_PTHREADS - pthreads for nspr and configure
# MOZ_OBJDIR - destination Object Directory (relative path)
# also,
# MOZ_CVS_FLAGS - flags to pass to CVS
# MOZ_CHECKOUT_FLAGS - flags to pass after cvs co
# MOZ_BRANCH - default branch to checkout
# MOZ_TOOLKIT - toolkit for configure --enable-toolkit=
# Basic static variables
1998-11-13 22:42:43 +03:00
#
CWD := $(shell pwd)
ifeq (mozilla, $(notdir $(CWD)))
ROOTDIR := $(shell dirname $(CWD))
TOPSRCDIR := $(CWD)
else
ROOTDIR := $(CWD)
TOPSRCDIR := $(CWD)/mozilla
endif
1998-11-13 22:42:43 +03:00
AUTOCONF := autoconf
TARGETS := export libs install
MKDIR := mkdir
SH := /bin/sh
1998-11-13 22:42:43 +03:00
ifndef MAKE
MAKE := gmake
endif
CONFIG_GUESS := $(wildcard $(TOPSRCDIR)/build/autoconf/config.guess)
ifndef CONFIG_GUESS
IS_FIRST_CHECKOUT := 1
1998-11-13 22:42:43 +03:00
endif
ifdef MOZ_OBJDIR
OBJDIR := $(MOZ_OBJDIR)
1998-11-13 22:42:43 +03:00
else
# Default objdir, e.g. mozilla/../obj-sparc-sun-solaris2.5.1
OBJDIR :=
ifdef CONFIG_GUESS
OBJDIR := $(ROOTDIR)/obj-$(shell $(CONFIG_GUESS))
endif
1998-11-13 22:42:43 +03:00
endif
#
# Step 1: CVS
#
# Add new cvs-related flags here in the form
1998-11-13 22:42:43 +03:00
# ifdef MOZ_FLAGNAME
# CVS_FLAGNAME = -option $(CVS_FLAGNAME)
# else (optional)
# CVS_FLAGNAME = -some -defaults
# endif
# then:
# - DOCUMENT THE NEW OPTION ABOVE!
# - Add $(CVS_FLAGNAME) to CVS_FLAGS at the bottom
1998-11-13 22:42:43 +03:00
# Basic CVS flags
1998-11-13 22:42:43 +03:00
ifdef MOZ_CVS_FLAGS
CVS_CFLAGS := $(MOZ_CVS_FLAGS)
1998-11-13 22:42:43 +03:00
else
CVS_CFLAGS := -q -z 3
1998-11-13 22:42:43 +03:00
endif
# Anything that we should use on all checkouts
1998-11-13 22:42:43 +03:00
ifdef MOZ_CHECKOUT_FLAGS
CVS_COFLAGS := $(MOZ_CHECKOUT_FLAGS)
1998-11-13 22:42:43 +03:00
else
CVS_COFLAGS := -P
1998-11-13 22:42:43 +03:00
endif
# The default branch tag
1998-11-13 22:42:43 +03:00
ifdef MOZ_BRANCH
CVS_BRANCH_FLAGS := -r $(MOZ_BRANCH_FLAGS)
1998-11-13 22:42:43 +03:00
endif
CVS := cvs $(CVS_CFLAGS)
CVSCO := $(CVS) co $(CVS_COFLAGS) $(CVS_BRANCH_FLAGS)
CVSCO_LOGFILE := $(ROOTDIR)/cvsco.log
1998-11-13 22:42:43 +03:00
#
# Step 2: NSPR
#
ifeq ($(USE_PTHREADS), 1)
NSPR_PTHREAD_FLAG := USE_PTHREADS=1
endif
NSPR_BRANCH :=
#NSPR_BRANCH := -rNSPRPUB_RELEASE_3_0
# These options can be overriden by the user
1998-11-13 22:42:43 +03:00
ifndef NSPR_INSTALL_DIR
NSPR_INSTALL_DIR := $(TOPSRCDIR)/$(OBJDIR)/nspr
# Need to build nspr since none was given
OPTIONAL_NSPR_BUILD := nspr
1998-11-13 22:42:43 +03:00
endif
1998-11-06 11:39:52 +03:00
1998-11-13 22:42:43 +03:00
ifndef NSPR_OPTIONS
NSPR_OPTIONS := NS_USE_GCC=1 NS_USE_NATIVE= $(NSPR_PTHREAD_FLAG)
endif
# These options are required to make this makefile build NSPR correctly
NSPR_REQ_OPTIONS := MOZILLA_CLIENT=1 NO_MDUPDATE=1
NSPR_DIST_OPTION := DIST=$(NSPR_INSTALL_DIR) NSDISTMODE=copy
NSPR_TARGET := export
1998-11-13 22:42:43 +03:00
NSPR_GMAKE_OPTIONS := \
$(NSPR_DIST_OPTION) \
$(NSPR_REQ_OPTIONS) \
$(NSPR_OPTIONS) \
$(NSPR_TARGET)
1998-11-13 22:42:43 +03:00
#
# Step 3: autoconf
#
# Add new autoconf/configure flags here in the form:
1998-11-13 22:42:43 +03:00
# ifdef MOZ_FLAGNAME
# CONFIG_FLAGNAME_FLAG = --some-config-option=$(MOZ_FLAGNAME)
# endif
# then:
# - DOCUMENT THE NEW OPTION ABOVE!
# - Add $(CONFIG_FLAGNAME_FLAG) to CONFIG_FLAGS at the bottom
1998-11-13 22:42:43 +03:00
# Default object directory, e.g. obj-sparc-sun-solaris2.5.1
1998-11-13 22:42:43 +03:00
ifdef MOZ_TOOLKIT
CONFIG_TOOLKIT_FLAG := --enable-toolkit=$(MOZ_TOOLKIT)
endif
ifeq ($(USE_PTHREADS), 1)
CONFIG_PTHREAD_FLAG := --with-pthreads
endif
1998-12-19 03:10:52 +03:00
CONFIG_FLAGS := \
--with-nspr=$(NSPR_INSTALL_DIR) \
--enable-editor \
--enable-debug \
$(CONFIG_PTHREADS_FLAG) \
$(CONFIG_TOOLKIT_FLAG) \
$(NULL)
1998-11-13 22:42:43 +03:00
#
# Rules
1998-11-13 22:42:43 +03:00
#
all: checkout build
1998-11-06 11:39:52 +03:00
.PHONY: checkout nspr build clean realclean
# Windows equivalents
pull_all: checkout
build_all: build
clobber: clean
clobber_all: realclean
pull_and_build_all: checkout build
1998-11-06 11:39:52 +03:00
#
1998-11-13 22:42:43 +03:00
# CVS checkout
#
1998-11-06 11:39:52 +03:00
checkout:
@if test -f $(CVSCO_LOGFILE) ; then \
mv $(CVSCO_LOGFILE) $(CVSCO_LOGFILE).old; \
fi
@date > $(CVSCO_LOGFILE)
cd $(ROOTDIR) && \
$(CVSCO) SeaMonkeyEditor | tee -a $(CVSCO_LOGFILE)
@if egrep "^C " $(CVSCO_LOGFILE) > /dev/null 2>&1 ; then \
echo "$(MAKE): *** Conflicts during checkout. \
Refer to $(CVSCO_LOGFILE)."; \
exit 1; \
fi
ifdef IS_FIRST_CHECKOUT
build:
$(MAKE) -f $(TOPSRCDIR)/client.mk $(OPTIONAL_NSPR_BUILD) build
else
1998-11-06 11:39:52 +03:00
1998-11-13 22:42:43 +03:00
#
# Configure
1998-11-13 22:42:43 +03:00
#
CONFIG_STATUS := $(wildcard $(OBJDIR)/config.status)
CONFIG_CACHE := $(wildcard $(OBJDIR)/config.cache)
ifdef RUN_AUTOCONF_LOCALLY
EX_CONFIG_DEPS := \
$(TOPSRCDIR)/aclocal.m4 \
$(TOPSRCDIR)/build/autoconf/gtk.m4 \
$(TOPSRCDIR)/build/autoconf/altoptions.m4 \
$(NULL)
$(TOPSRCDIR)/configure: $(TOPSRCDIR)/configure.in $(EX_CONFIG_DEPS)
1998-11-13 22:42:43 +03:00
@echo Generating $@ using autoconf
cd $(TOPSRCDIR); $(AUTOCONF)
endif
1998-11-13 22:42:43 +03:00
$(OBJDIR)/Makefile: $(TOPSRCDIR)/configure
@if test ! -d $(OBJDIR); then $(MKDIR) $(OBJDIR); fi
@echo cd $(OBJDIR);
@echo ../configure $(CONFIG_FLAGS)
@cd $(OBJDIR) && \
LD_LIBRARY_PATH=$(NSPR_INSTALL_DIR)/lib:$(LD_LIBRARY_PATH) \
$(TOPSRCDIR)/configure $(CONFIG_FLAGS) \
|| echo Fix above errors and then restart with \"$(MAKE) -f client.mk build\"
ifdef CONFIG_STATUS
$(OBJDIR)/config/autoconf.mk: $(TOPSRCDIR)/config/autoconf.mk.in
cd $(OBJDIR); \
CONFIG_FILES=config/autoconf.mk ./config.status
endif
1998-11-13 22:42:43 +03:00
#
# Build it
#
build: $(OBJDIR)/Makefile
cd $(OBJDIR); $(MAKE);
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
1998-11-13 22:42:43 +03:00
@echo NSPR is ready and installed in $(NSPR_INSTALL_DIR)
$(NSPR_INSTALL_DIR)/lib/libnspr21.so:
1998-11-13 22:42:43 +03:00
@-$(MKDIR) -p $(NSPR_INSTALL_DIR)
($(MAKE) -C $(TOPSRCDIR)/nsprpub $(NSPR_GMAKE_OPTIONS))
# cd $(ROOTDIR) && $(CVSCO) $(NSPR_BRANCH) NSPR
1998-11-06 11:39:52 +03:00
# Pass these target onto the real build system
clean realclean:
cd $(OBJDIR); $(MAKE) $@;
# (! IS_FIRST_CHECKOUT)
endif