1998-08-19 20:42:14 +00:00
|
|
|
#
|
1999-11-06 03:40:37 +00:00
|
|
|
# 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/
|
1998-08-19 20:42:14 +00:00
|
|
|
#
|
1999-11-06 03:40:37 +00:00
|
|
|
# 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-19 20:42:14 +00:00
|
|
|
#
|
1999-11-06 03:40:37 +00:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
1998-08-19 20:42:14 +00:00
|
|
|
# Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:40:37 +00:00
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1998-08-19 20:42:14 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
DEPTH = ..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
1998-09-02 00:54:34 +00:00
|
|
|
VPATH = @srcdir@
|
1998-08-19 20:42:14 +00:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2002-10-30 05:53:39 +00:00
|
|
|
ifneq (,$(filter-out WINNT OS2,$(OS_ARCH)))
|
2001-10-14 21:38:01 +00:00
|
|
|
HOST_PROGRAM = nsinstall$(BIN_SUFFIX)
|
2002-11-15 03:41:17 +00:00
|
|
|
HOST_CSRCS = nsinstall.c pathsub.c
|
2001-12-04 21:17:48 +00:00
|
|
|
endif
|
1998-08-19 20:42:14 +00:00
|
|
|
|
|
|
|
PLSRCS = nfspwd.pl revdepth.pl
|
|
|
|
|
2002-11-15 03:41:17 +00:00
|
|
|
TARGETS = $(HOST_PROGRAM) $(PLSRCS:.pl=) $(SIMPLE_PROGRAMS)
|
1998-08-19 20:42:14 +00:00
|
|
|
|
|
|
|
# Generate the build number on the fly.
|
2000-07-08 09:36:01 +00:00
|
|
|
TARGETS += build_number nsBuildID.h
|
1998-08-19 20:42:14 +00:00
|
|
|
|
2002-11-15 03:41:17 +00:00
|
|
|
ifndef CROSS_COMPILE
|
2000-12-11 07:24:47 +00:00
|
|
|
ifdef USE_ELF_DYNSTR_GC
|
|
|
|
TARGETS += elf-dynstr-gc
|
|
|
|
endif
|
2002-11-15 03:41:17 +00:00
|
|
|
endif
|
2000-12-11 07:24:47 +00:00
|
|
|
|
2002-06-09 00:05:37 +00:00
|
|
|
ifeq ($(OS_ARCH), Darwin)
|
2002-06-26 03:07:16 +00: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 00:05:37 +00:00
|
|
|
SIMPLE_PROGRAMS += asdecode
|
|
|
|
endif
|
|
|
|
|
1998-08-19 20:42:14 +00:00
|
|
|
# IMPORTANT: Disable NSBUILDROOT for this directory only, otherwise we have
|
1999-09-10 09:22:43 +00:00
|
|
|
# a recursive rule for finding nsinstall and the Perl scripts.
|
1998-08-19 20:42:14 +00:00
|
|
|
ifdef NSBUILDROOT
|
|
|
|
override NSBUILDROOT :=
|
|
|
|
endif
|
|
|
|
|
2001-11-16 17:41:48 +00:00
|
|
|
ifdef GNU_CC
|
2001-11-16 07:42:48 +00:00
|
|
|
MODULE_OPTIMIZE_FLAGS = -O3
|
|
|
|
endif
|
|
|
|
|
2002-03-19 22:40:31 +00:00
|
|
|
ifndef COMPILER_DEPEND
|
2002-03-19 22:32:08 +00:00
|
|
|
ifndef MOZ_NATIVE_MAKEDEPEND
|
|
|
|
DIRS += mkdepend
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2000-05-15 00:26:47 +00:00
|
|
|
include $(topsrcdir)/config/config.mk
|
2002-04-25 02:52:44 +00:00
|
|
|
|
|
|
|
# Do not install util programs
|
|
|
|
NO_INSTALL=1
|
|
|
|
|
1998-08-19 20:42:14 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
1999-09-03 22:28:49 +00:00
|
|
|
ifeq ($(OS_CONFIG),SunOS4.1)
|
|
|
|
NSPR_CFLAGS += -I$(srcdir)/../nsprpub/pr/include/md
|
1998-08-19 20:42:14 +00:00
|
|
|
endif
|
|
|
|
|
2002-10-01 07:53:25 +00:00
|
|
|
HEADERS = nsBuildID.h $(DEPTH)/mozilla-config.h
|
2001-09-12 06:42:26 +00:00
|
|
|
|
|
|
|
export:: $(TARGETS) $(HEADERS)
|
2003-01-17 14:58:08 +00:00
|
|
|
$(INSTALL) $(IFLAGS1) $(HEADERS) $(DIST)/include
|
2001-09-12 06:42:26 +00:00
|
|
|
$(PERL) -I$(MOZILLA_DIR)/config $(MOZILLA_DIR)/config/build-list.pl $(PUBLIC)/.headerlist $(HEADERS)
|
2001-06-21 08:11:15 +00:00
|
|
|
-rm -f $(FINAL_LINK_COMPS) $(FINAL_LINK_LIBS) $(FINAL_LINK_COMP_NAMES)
|
2001-10-17 05:27:42 +00:00
|
|
|
-rm -f $(DIST)/bin/chrome/chromelist.txt
|
2003-01-22 04:22:34 +00:00
|
|
|
$(NSINSTALL) -t $(IFLAGS1) $(HEADERS) $(DIST)/sdk/
|
1998-10-03 01:37:09 +00:00
|
|
|
|
2002-09-13 02:20:48 +00:00
|
|
|
|
|
|
|
# Create mini-SDK directory for NSPR
|
|
|
|
ifndef MOZ_NATIVE_NSPR
|
2003-04-02 06:22:59 +00:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2003-04-02 08:13:19 +00:00
|
|
|
_ABS_DIST = $(shell cd $(DIST) && cygpath -w `pwd` | sed -e 's|\\|/|g')
|
2003-04-02 06:22:59 +00:00
|
|
|
else
|
|
|
|
_ABS_DIST = $(shell cd $(DIST) && pwd)
|
|
|
|
endif
|
2002-09-13 02:20:48 +00:00
|
|
|
libs::
|
|
|
|
$(RM) -rf $(DIST)/sdk/nspr
|
2002-10-24 04:39:50 +00:00
|
|
|
$(MAKE) -C $(DEPTH)/nsprpub real_install prefix=$(_ABS_DIST)/sdk/nspr exec_prefix=$(_ABS_DIST)/sdk/nspr bindir=$(_ABS_DIST)/sdk/nspr/bin includedir=$(_ABS_DIST)/sdk/nspr/include libdir=$(_ABS_DIST)/sdk/nspr/lib datadir=$(_ABS_DIST)/sdk/nspr/share DESTDIR=
|
2002-09-13 02:20:48 +00:00
|
|
|
$(RM) -rf $(DIST)/sdk/nspr/bin $(DIST)/sdk/nspr/share
|
|
|
|
mv $(DIST)/sdk/nspr/lib $(DIST)/sdk/nspr/bin
|
2002-12-28 01:15:07 +00:00
|
|
|
ifndef DISABLE_DIST_GRE
|
2003-01-03 08:58:59 +00:00
|
|
|
$(INSTALL) $(DIST)/sdk/nspr/bin/*$(DLL_SUFFIX) $(GRE_DIST)
|
2002-09-13 02:20:48 +00:00
|
|
|
endif
|
2002-12-28 05:25:08 +00:00
|
|
|
endif
|
2002-09-13 02:20:48 +00:00
|
|
|
|
2002-06-13 09:07:40 +00: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 20:47:34 +00:00
|
|
|
$(SYSINSTALL) $(IFLAGS1) $(DEPTH)/mozilla-config.h $(DESTDIR)$(includedir)
|
2002-06-13 09:07:40 +00:00
|
|
|
|
2001-12-07 00:30:25 +00:00
|
|
|
GARBAGE += build_number nsBuildID \
|
|
|
|
$(FINAL_LINK_COMPS) $(FINAL_LINK_LIBS) $(FINAL_LINK_COMP_NAMES)
|
2000-10-20 05:21:40 +00:00
|
|
|
|
2000-07-09 15:02:24 +00:00
|
|
|
ifneq ($(origin BUILD_OFFICIAL)_$(origin MOZILLA_OFFICIAL),undefined_undefined)
|
2000-10-20 05:21:40 +00:00
|
|
|
_BN_OFFICIAL=1
|
2000-07-08 09:36:01 +00:00
|
|
|
else
|
2000-10-20 05:21:40 +00:00
|
|
|
_BN_OFFICIAL=
|
2000-07-08 09:36:01 +00:00
|
|
|
endif
|
1998-08-19 20:42:14 +00:00
|
|
|
|
2002-08-29 10:30:58 +00:00
|
|
|
ifdef MOZ_ENABLE_GTK2
|
|
|
|
GLIB_CFLAGS = $(MOZ_GTK2_CFLAGS)
|
|
|
|
GLIB_LIBS = $(MOZ_GTK2_LIBS)
|
|
|
|
endif
|
|
|
|
|
2000-10-20 05:21:40 +00:00
|
|
|
build_number: FORCE
|
|
|
|
$(PERL) -I$(srcdir) $(srcdir)/bdate.pl $@ $(_BN_OFFICIAL)
|
|
|
|
|
|
|
|
nsBuildID.h: nsBuildID.h.in build_number
|
2000-07-08 09:36:01 +00:00
|
|
|
$(RM) $@
|
2003-03-11 00:31:29 +00:00
|
|
|
$(PERL) -I$(srcdir) $(srcdir)/aboutime.pl -m $(srcdir)/milestone.txt $@ build_number $(srcdir)/nsBuildID.h.in
|
1998-08-27 19:53:30 +00:00
|
|
|
|
2002-11-15 03:41:17 +00:00
|
|
|
ifndef CROSS_COMPILE
|
|
|
|
ifdef USE_ELF_DYNSTR_GC
|
2000-12-11 07:24:47 +00:00
|
|
|
elf-dynstr-gc: elf-dynstr-gc.c Makefile Makefile.in
|
2003-04-08 06:52:15 +00:00
|
|
|
$(CC) $(COMPILE_CFLAGS) $(GLIB_CFLAGS) -o $@ $< $(LDFLAGS) $(GLIB_LIBS)
|
2000-12-11 07:24:47 +00:00
|
|
|
|
2000-12-14 22:28:51 +00:00
|
|
|
export:: elf-dynstr-gc
|
2000-12-11 07:24:47 +00:00
|
|
|
$(INSTALL) -m 555 elf-dynstr-gc $(DIST)/bin
|
2000-12-11 08:00:29 +00:00
|
|
|
endif
|
2002-11-15 03:41:17 +00:00
|
|
|
endif
|
2000-05-15 00:26:47 +00:00
|
|
|
|
1998-08-19 20:42:14 +00:00
|
|
|
FORCE:
|
|
|
|
|
|
|
|
ifdef MKDEPEND_DIR
|
|
|
|
clean clobber realclean clobber_all::
|
|
|
|
cd $(MKDEPEND_DIR); $(MAKE) $@
|
|
|
|
endif
|
|
|
|
|
|
|
|
|