mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
90 lines
2.4 KiB
Makefile
90 lines
2.4 KiB
Makefile
#
|
|
# 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.
|
|
#
|
|
|
|
DEPTH = ..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
INTERNAL_TOOLS = 1
|
|
|
|
PROGRAM = nsinstall
|
|
|
|
CSRCS = nsinstall.c pathsub.c
|
|
PLSRCS = nfspwd.pl revdepth.pl
|
|
|
|
TARGETS = $(PROGRAM) $(PLSRCS:.pl=)
|
|
|
|
# Generate the build number on the fly.
|
|
ifneq ($(origin BUILD_OFFICIAL)_$(origin MOZILLA_OFFICIAL),undefined_undefined)
|
|
TARGETS += $(DEPTH)/build/build_number
|
|
endif
|
|
|
|
# If this is an "official mozilla build" make them shortlived.
|
|
ifdef MOZILLA_OFFICIAL
|
|
TARGETS += $(DEPTH)/modules/libpref/src/init/all.js
|
|
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/rules.mk
|
|
|
|
ifeq ($(OS_ARCH), Linux)
|
|
DEFINES += -D_BSD_SOURCE
|
|
endif
|
|
|
|
ifeq ($(subst /,_,$(shell uname -s)),OS2)
|
|
DIRS = os2
|
|
LOCAL_INCLUDES += -Ios2
|
|
endif
|
|
|
|
ifeq ($(OS_CONFIG),SunOS4.1)
|
|
NSPR_CFLAGS += -I$(srcdir)/../nsprpub/pr/include/md
|
|
endif
|
|
|
|
export:: $(TARGETS)
|
|
|
|
#update build number from within make script
|
|
$(DEPTH)/build/build_number: FORCE
|
|
$(RM) $@
|
|
$(PERL) $(srcdir)/bdate.pl > $@
|
|
$(PERL) $(srcdir)/aboutime.pl $(topsrcdir)/xpfe/browser/resources/locale/en-US/navigator.dtd $@
|
|
$(PERL) $(srcdir)/aboutime.pl $(topsrcdir)/xpfe/browser/resources/content/viewSource.xul $@
|
|
$(PERL) $(srcdir)/aboutime.pl $(topsrcdir)/xpfe/appshell/public/nsBuildID.h $@
|
|
|
|
$(DEPTH)/modules/libpref/src/init/all.js: FORCE
|
|
$(PERL) $(srcdir)/set-timebomb.pl 0 30
|
|
|
|
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
|
|
|