1998-08-20 00:42:14 +04:00
|
|
|
#
|
2004-04-18 18:21:17 +04:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-08-20 00:42:14 +04:00
|
|
|
#
|
2004-04-18 18:21:17 +04:00
|
|
|
# The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
#
|
|
|
|
# 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.
|
1998-08-20 00:42:14 +04:00
|
|
|
#
|
1999-11-06 06:40:37 +03:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
2004-04-18 18:21:17 +04:00
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
# Robert Ginda <rginda@netscape.com>
|
|
|
|
# John Taylor <jtaylor@netscape.com>
|
1999-11-06 06:40:37 +03:00
|
|
|
#
|
2004-04-18 18:21:17 +04:00
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
1998-08-20 00:42:14 +04:00
|
|
|
#
|
2004-04-18 18:21:17 +04:00
|
|
|
# ***** END LICENSE BLOCK *****
|
1998-08-20 00:42:14 +04:00
|
|
|
|
|
|
|
DEPTH = ..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
1998-09-02 04:54:34 +04:00
|
|
|
VPATH = @srcdir@
|
1998-08-20 00:42:14 +04:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2004-12-16 08:13:46 +03:00
|
|
|
# For sanity's sake, we compile nsinstall without the wrapped system
|
|
|
|
# headers, so that we can use it to set up the wrapped system headers.
|
|
|
|
VISIBILITY_FLAGS =
|
|
|
|
|
2004-02-21 01:14:14 +03:00
|
|
|
ifneq (,$(CROSS_COMPILE)$(filter-out WINNT OS2,$(OS_ARCH)))
|
2005-04-22 23:06:27 +04:00
|
|
|
ifneq ($(OS_ARCH), WINCE)
|
2004-02-21 01:14:14 +03:00
|
|
|
HOST_PROGRAM = nsinstall$(HOST_BIN_SUFFIX)
|
2002-11-15 06:41:17 +03:00
|
|
|
HOST_CSRCS = nsinstall.c pathsub.c
|
2001-12-05 00:17:48 +03:00
|
|
|
endif
|
2005-04-22 23:06:27 +04:00
|
|
|
endif
|
1998-08-20 00:42:14 +04:00
|
|
|
|
|
|
|
PLSRCS = nfspwd.pl revdepth.pl
|
|
|
|
|
2002-11-15 06:41:17 +03:00
|
|
|
TARGETS = $(HOST_PROGRAM) $(PLSRCS:.pl=) $(SIMPLE_PROGRAMS)
|
1998-08-20 00:42:14 +04:00
|
|
|
|
|
|
|
# Generate the build number on the fly.
|
2000-07-08 13:36:01 +04:00
|
|
|
TARGETS += build_number nsBuildID.h
|
1998-08-20 00:42:14 +04:00
|
|
|
|
2002-11-15 06:41:17 +03:00
|
|
|
ifndef CROSS_COMPILE
|
2000-12-11 10:24:47 +03:00
|
|
|
ifdef USE_ELF_DYNSTR_GC
|
|
|
|
TARGETS += elf-dynstr-gc
|
|
|
|
endif
|
2002-11-15 06:41:17 +03:00
|
|
|
endif
|
2000-12-11 10:24:47 +03:00
|
|
|
|
2002-06-09 04:05:37 +04:00
|
|
|
ifeq ($(OS_ARCH), Darwin)
|
2002-06-26 07:07:16 +04:00
|
|
|
# XXX Setting CPP_PROG_LINK is ugly, but it works (it makes nsinstall
|
|
|
|
# link with $(CXX)). asdecode should really be in its own directory.
|
|
|
|
CPP_PROG_LINK = 1
|
2002-06-09 04:05:37 +04:00
|
|
|
SIMPLE_PROGRAMS += asdecode
|
|
|
|
endif
|
|
|
|
|
1998-08-20 00:42:14 +04:00
|
|
|
# IMPORTANT: Disable NSBUILDROOT for this directory only, otherwise we have
|
1999-09-10 13:22:43 +04:00
|
|
|
# a recursive rule for finding nsinstall and the Perl scripts.
|
1998-08-20 00:42:14 +04:00
|
|
|
ifdef NSBUILDROOT
|
|
|
|
override NSBUILDROOT :=
|
|
|
|
endif
|
|
|
|
|
2001-11-16 20:41:48 +03:00
|
|
|
ifdef GNU_CC
|
2001-11-16 10:42:48 +03:00
|
|
|
MODULE_OPTIMIZE_FLAGS = -O3
|
|
|
|
endif
|
|
|
|
|
2002-03-20 01:40:31 +03:00
|
|
|
ifndef COMPILER_DEPEND
|
2002-03-20 01:32:08 +03:00
|
|
|
ifndef MOZ_NATIVE_MAKEDEPEND
|
|
|
|
DIRS += mkdepend
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2000-05-15 04:26:47 +04:00
|
|
|
include $(topsrcdir)/config/config.mk
|
2002-04-25 06:52:44 +04:00
|
|
|
|
|
|
|
# Do not install util programs
|
|
|
|
NO_INSTALL=1
|
|
|
|
|
1998-08-20 00:42:14 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
1999-09-04 02:28:49 +04:00
|
|
|
ifeq ($(OS_CONFIG),SunOS4.1)
|
|
|
|
NSPR_CFLAGS += -I$(srcdir)/../nsprpub/pr/include/md
|
1998-08-20 00:42:14 +04:00
|
|
|
endif
|
|
|
|
|
2005-07-21 17:33:43 +04:00
|
|
|
HEADERS = \
|
|
|
|
nsBuildID.h \
|
|
|
|
$(DEPTH)/mozilla-config.h \
|
|
|
|
$(srcdir)/nsStaticComponents.h \
|
|
|
|
$(NULL)
|
2001-09-12 10:42:26 +04:00
|
|
|
|
|
|
|
export:: $(TARGETS) $(HEADERS)
|
2003-01-17 17:58:08 +03:00
|
|
|
$(INSTALL) $(IFLAGS1) $(HEADERS) $(DIST)/include
|
2001-06-21 12:11:15 +04:00
|
|
|
-rm -f $(FINAL_LINK_COMPS) $(FINAL_LINK_LIBS) $(FINAL_LINK_COMP_NAMES)
|
2001-10-17 09:27:42 +04:00
|
|
|
-rm -f $(DIST)/bin/chrome/chromelist.txt
|
2004-03-23 23:58:21 +03:00
|
|
|
$(NSINSTALL) -t $(IFLAGS1) $(HEADERS) $(DIST)/sdk/include
|
2004-02-21 01:14:14 +03:00
|
|
|
ifdef HOST_PROGRAM
|
|
|
|
$(INSTALL) $(HOST_PROGRAM) $(DIST)/bin
|
|
|
|
endif
|
1998-10-03 05:37:09 +04:00
|
|
|
|
2002-09-13 06:20:48 +04:00
|
|
|
|
2004-03-23 23:58:21 +03:00
|
|
|
# Copy NSPR to the SDK
|
2002-09-13 06:20:48 +04:00
|
|
|
ifndef MOZ_NATIVE_NSPR
|
2005-06-02 08:00:37 +04:00
|
|
|
ABS_DIST = cd $(DIST) && pwd
|
2004-02-21 01:14:14 +03:00
|
|
|
ifeq (,$(CROSS_COMPILE)$(filter-out WINNT,$(OS_ARCH)))
|
2005-06-02 08:00:37 +04:00
|
|
|
ifdef CYGDRIVE_MOUNT
|
|
|
|
ABS_DIST = cygpath -w $(DIST) | sed -e 's|\\\\|/|g'
|
|
|
|
endif
|
2003-04-02 10:22:59 +04:00
|
|
|
endif
|
2002-09-13 06:20:48 +04:00
|
|
|
libs::
|
2005-06-02 08:00:37 +04:00
|
|
|
_ABS_DIST=`$(ABS_DIST)`; \
|
|
|
|
$(MAKE) -C $(DEPTH)/nsprpub real_install prefix=$$_ABS_DIST/sdk exec_prefix=$$_ABS_DIST/sdk bindir=$$_ABS_DIST/sdk/dummy includedir=$$_ABS_DIST/sdk/include libdir=$$_ABS_DIST/sdk/lib datadir=$$_ABS_DIST/sdk/dummy DESTDIR=
|
2004-03-23 23:58:21 +03:00
|
|
|
$(RM) -rf $(DIST)/sdk/dummy
|
2002-12-28 04:15:07 +03:00
|
|
|
ifndef DISABLE_DIST_GRE
|
2004-10-29 02:12:18 +04:00
|
|
|
$(INSTALL) $(DIST)/sdk/lib/$(DLL_PREFIX)nspr4$(DLL_SUFFIX) $(DIST)/sdk/lib/$(DLL_PREFIX)plc4$(DLL_SUFFIX) $(DIST)/sdk/lib/$(DLL_PREFIX)plds4$(DLL_SUFFIX) $(GRE_DIST)
|
|
|
|
endif
|
2004-10-29 02:33:51 +04:00
|
|
|
ifneq (,$(filter OS2 WINNT,$(OS_ARCH)))
|
2004-10-29 02:12:18 +04:00
|
|
|
$(RM) -f $(DIST)/sdk/lib/$(DLL_PREFIX)nspr4$(DLL_SUFFIX) $(DIST)/sdk/lib/$(DLL_PREFIX)plc4$(DLL_SUFFIX) $(DIST)/sdk/lib/$(DLL_PREFIX)plds4$(DLL_SUFFIX)
|
2004-11-01 21:32:26 +03:00
|
|
|
$(RM) -f $(DIST)/sdk/lib/$(LIB_PREFIX)nspr4_s.$(LIB_SUFFIX) $(DIST)/sdk/lib/$(LIB_PREFIX)plc4_s.$(LIB_SUFFIX) $(DIST)/sdk/lib/$(LIB_PREFIX)plds4_s.$(LIB_SUFFIX)
|
|
|
|
else
|
|
|
|
$(RM) -f $(DIST)/sdk/lib/$(LIB_PREFIX)nspr4.$(LIB_SUFFIX) $(DIST)/sdk/lib/$(LIB_PREFIX)plc4.$(LIB_SUFFIX) $(DIST)/sdk/lib/$(LIB_PREFIX)plds4.$(LIB_SUFFIX)
|
2002-09-13 06:20:48 +04:00
|
|
|
endif
|
2002-12-28 08:25:08 +03:00
|
|
|
endif
|
2002-09-13 06:20:48 +04:00
|
|
|
|
2004-12-16 08:13:46 +03:00
|
|
|
ifdef WRAP_SYSTEM_INCLUDES
|
|
|
|
export::
|
|
|
|
if test ! -d system_wrappers; then mkdir system_wrappers; fi
|
|
|
|
$(PERL) $(topsrcdir)/nsprpub/config/make-system-wrappers.pl system_wrappers < $(srcdir)/system-headers
|
|
|
|
$(INSTALL) system_wrappers $(DIST)/include
|
|
|
|
endif
|
|
|
|
|
2002-06-13 13:07:40 +04:00
|
|
|
# we don't use an explicit dependency here because then we would
|
|
|
|
# regenerate nsBuildID.h during the make install phase and that would
|
|
|
|
# be bad.
|
|
|
|
install::
|
|
|
|
@if test ! -f nsBuildID.h; then\
|
|
|
|
echo "You must have done at least a make export before trying to do a make install."; \
|
|
|
|
echo "(nsBuildID.h is missing.)"; \
|
|
|
|
exit 1; \
|
|
|
|
fi;
|
|
|
|
$(SYSINSTALL) $(IFLAGS1) nsBuildID.h $(DESTDIR)$(includedir)
|
2002-11-01 23:47:34 +03:00
|
|
|
$(SYSINSTALL) $(IFLAGS1) $(DEPTH)/mozilla-config.h $(DESTDIR)$(includedir)
|
2002-06-13 13:07:40 +04:00
|
|
|
|
2001-12-07 03:30:25 +03:00
|
|
|
GARBAGE += build_number nsBuildID \
|
|
|
|
$(FINAL_LINK_COMPS) $(FINAL_LINK_LIBS) $(FINAL_LINK_COMP_NAMES)
|
2000-10-20 09:21:40 +04:00
|
|
|
|
2000-07-09 19:02:24 +04:00
|
|
|
ifneq ($(origin BUILD_OFFICIAL)_$(origin MOZILLA_OFFICIAL),undefined_undefined)
|
2000-10-20 09:21:40 +04:00
|
|
|
_BN_OFFICIAL=1
|
2000-07-08 13:36:01 +04:00
|
|
|
else
|
2000-10-20 09:21:40 +04:00
|
|
|
_BN_OFFICIAL=
|
2000-07-08 13:36:01 +04:00
|
|
|
endif
|
1998-08-20 00:42:14 +04:00
|
|
|
|
2002-08-29 14:30:58 +04:00
|
|
|
ifdef MOZ_ENABLE_GTK2
|
|
|
|
GLIB_CFLAGS = $(MOZ_GTK2_CFLAGS)
|
|
|
|
GLIB_LIBS = $(MOZ_GTK2_LIBS)
|
|
|
|
endif
|
|
|
|
|
2000-10-20 09:21:40 +04:00
|
|
|
build_number: FORCE
|
|
|
|
$(PERL) -I$(srcdir) $(srcdir)/bdate.pl $@ $(_BN_OFFICIAL)
|
|
|
|
|
2004-12-15 02:11:27 +03:00
|
|
|
nsBuildID.h: nsBuildID.h.in build_number $(srcdir)/milestone.txt Makefile
|
2000-07-08 13:36:01 +04:00
|
|
|
$(RM) $@
|
2003-03-11 03:31:29 +03:00
|
|
|
$(PERL) -I$(srcdir) $(srcdir)/aboutime.pl -m $(srcdir)/milestone.txt $@ build_number $(srcdir)/nsBuildID.h.in
|
1998-08-27 23:53:30 +04:00
|
|
|
|
2002-11-15 06:41:17 +03:00
|
|
|
ifndef CROSS_COMPILE
|
|
|
|
ifdef USE_ELF_DYNSTR_GC
|
2000-12-11 10:24:47 +03:00
|
|
|
elf-dynstr-gc: elf-dynstr-gc.c Makefile Makefile.in
|
2003-04-08 10:52:15 +04:00
|
|
|
$(CC) $(COMPILE_CFLAGS) $(GLIB_CFLAGS) -o $@ $< $(LDFLAGS) $(GLIB_LIBS)
|
2000-12-11 10:24:47 +03:00
|
|
|
|
2000-12-15 01:28:51 +03:00
|
|
|
export:: elf-dynstr-gc
|
2000-12-11 10:24:47 +03:00
|
|
|
$(INSTALL) -m 555 elf-dynstr-gc $(DIST)/bin
|
2000-12-11 11:00:29 +03:00
|
|
|
endif
|
2002-11-15 06:41:17 +03:00
|
|
|
endif
|
2000-05-15 04:26:47 +04:00
|
|
|
|
1998-08-20 00:42:14 +04:00
|
|
|
FORCE:
|
|
|
|
|
|
|
|
ifdef MKDEPEND_DIR
|
|
|
|
clean clobber realclean clobber_all::
|
|
|
|
cd $(MKDEPEND_DIR); $(MAKE) $@
|
|
|
|
endif
|
|
|
|
|
|
|
|
|