mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
118 lines
2.9 KiB
Makefile
118 lines
2.9 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 = ..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
PROGRAM = nsinstall$(BIN_SUFFIX)
|
|
ifdef CROSS_COMPILE
|
|
HOST_PROGRAM = host_nsinstall
|
|
endif
|
|
|
|
CSRCS = nsinstall.c pathsub.c
|
|
PLSRCS = nfspwd.pl revdepth.pl
|
|
ifdef CROSS_COMPILE
|
|
HOST_CSRCS = $(CSRCS)
|
|
endif
|
|
|
|
TARGETS = $(HOST_PROGRAM) $(PROGRAM) $(PLSRCS:.pl=)
|
|
|
|
# Generate the build number on the fly.
|
|
TARGETS += build_number nsBuildID.h
|
|
|
|
ifdef USE_ELF_DYNSTR_GC
|
|
TARGETS += elf-dynstr-gc
|
|
endif
|
|
|
|
# IMPORTANT: Disable NSBUILDROOT for this directory only, otherwise we have
|
|
# a recursive rule for finding nsinstall and the Perl scripts.
|
|
ifdef NSBUILDROOT
|
|
override NSBUILDROOT :=
|
|
endif
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
ifeq ($(OS_ARCH), Linux)
|
|
DEFINES += -D_BSD_SOURCE
|
|
endif
|
|
|
|
ifeq ($(MOZ_OS2_TOOLS),VACPP)
|
|
LOCAL_INCLUDES += -I$(srcdir)/os2
|
|
HSRCS += dirent.h getopt.h
|
|
endif
|
|
|
|
ifeq ($(OS_CONFIG),SunOS4.1)
|
|
NSPR_CFLAGS += -I$(srcdir)/../nsprpub/pr/include/md
|
|
endif
|
|
|
|
ifeq ($(OS_CONFIG),Rhapsody10.0)
|
|
NSPR_CFLAGS += -DGETCWD_CANT_MALLOC
|
|
endif
|
|
|
|
export:: $(TARGETS)
|
|
$(INSTALL) -m 444 nsBuildID.h $(DIST)/include
|
|
ifeq ($(MOZ_OS2_TOOLS),VACPP)
|
|
$(INSTALL) -m 444 $(srcdir)/os2/dirent.h $(DIST)/include
|
|
$(INSTALL) -m 444 $(srcdir)/os2/getopt.h $(DIST)/include
|
|
endif
|
|
-rm -f $(FINAL_LINK_COMPS) $(FINAL_LINK_LIBS) $(FINAL_LINK_COMP_NAMES)
|
|
|
|
GARBAGE += build_number nsBuildId.h
|
|
|
|
ifneq ($(origin BUILD_OFFICIAL)_$(origin MOZILLA_OFFICIAL),undefined_undefined)
|
|
_BN_OFFICIAL=1
|
|
else
|
|
_BN_OFFICIAL=
|
|
endif
|
|
|
|
build_number: FORCE
|
|
$(PERL) -I$(srcdir) $(srcdir)/bdate.pl $@ $(_BN_OFFICIAL)
|
|
|
|
nsBuildID.h: nsBuildID.h.in build_number
|
|
$(RM) $@
|
|
$(PERL) -I$(srcdir) $(srcdir)/aboutime.pl $@ build_number $<
|
|
|
|
elf-dynstr-gc: elf-dynstr-gc.c Makefile Makefile.in
|
|
$(CC) $(COMPILE_CFLAGS) $(GLIB_CFLAGS) $(GLIB_LIBS) $(LDFLAGS) -o $@ $<
|
|
|
|
ifdef USE_ELF_DYNSTR_GC
|
|
export:: elf-dynstr-gc
|
|
$(INSTALL) -m 555 elf-dynstr-gc $(DIST)/bin
|
|
endif
|
|
|
|
FORCE:
|
|
|
|
ifdef MKDEPEND_DIR
|
|
clean clobber realclean clobber_all::
|
|
cd $(MKDEPEND_DIR); $(MAKE) $@
|
|
endif
|
|
|
|
ifdef MOZILLA_DETECT
|
|
clean clobber realclean clobber_all::
|
|
cd $(MOZILLA_DETECT_DIR); $(MAKE) $@
|
|
endif
|
|
|