gecko-dev/config/Makefile.in

102 строки
2.6 KiB
Makefile
Исходник Обычный вид История

1998-08-20 00:42:14 +04: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-20 00:42:14 +04: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-20 00:42:14 +04:00
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
1998-08-20 00:42:14 +04:00
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
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
1999-09-10 13:22:43 +04:00
PROGRAM = nsinstall
ifdef CROSS_COMPILE
HOST_PROGRAM = host_nsinstall
endif
1998-08-20 00:42:14 +04:00
1999-09-10 13:22:43 +04:00
CSRCS = nsinstall.c pathsub.c
1998-08-20 00:42:14 +04:00
PLSRCS = nfspwd.pl revdepth.pl
ifdef CROSS_COMPILE
HOST_CSRCS = $(CSRCS)
endif
1998-08-20 00:42:14 +04:00
TARGETS = $(HOST_PROGRAM) $(PROGRAM) $(PLSRCS:.pl=)
1998-08-20 00:42:14 +04:00
# Generate the build number on the fly.
ifneq ($(origin BUILD_OFFICIAL)_$(origin MOZILLA_OFFICIAL),undefined_undefined)
1998-09-02 04:54:34 +04:00
TARGETS += $(DEPTH)/build/build_number
endif
1998-09-02 04:54:34 +04:00
# If this is an "official mozilla build" make them shortlived.
ifdef MOZILLA_OFFICIAL
TARGETS += $(DEPTH)/modules/libpref/src/init/all.js
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
include $(topsrcdir)/config/rules.mk
ifeq ($(OS_ARCH), Linux)
DEFINES += -D_BSD_SOURCE
endif
1999-09-10 13:22:43 +04:00
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
1998-08-20 00:42:14 +04:00
endif
2000-03-11 06:08:04 +03:00
ifeq ($(OS_CONFIG),Rhapsody10.0)
NSPR_CFLAGS += -DGETCWD_CANT_MALLOC
endif
1999-06-02 05:15:08 +04:00
export:: $(TARGETS)
1998-08-20 00:42:14 +04:00
#update build number from within make script
1998-08-26 08:04:57 +04:00
$(DEPTH)/build/build_number: FORCE
1998-08-20 00:42:14 +04:00
$(RM) $@
1998-10-30 07:05:50 +03:00
$(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 $@
1998-08-20 00:42:14 +04:00
1998-09-02 04:54:34 +04:00
$(DEPTH)/modules/libpref/src/init/all.js: FORCE
1998-10-30 07:05:50 +03:00
$(PERL) $(srcdir)/set-timebomb.pl 0 30
1998-08-27 23:53:30 +04:00
1998-08-20 00:42:14 +04:00
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