gecko-dev/config/Makefile.in

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

1998-08-20 00:42:14 +04:00
# -*- Mode: 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@
1998-09-02 04:54:34 +04:00
VPATH = @srcdir@
1998-08-20 00:42:14 +04:00
include $(DEPTH)/config/autoconf.mk
HSRCS = pathsub.h
CSRCS = nsinstall.c pathsub.c
ifeq ($(subst /,_,$(shell uname -s)),OS2)
DIRS = os2
LOCAL_INCLUDES += -Ios2
HSRCS += dirent.h getopt.h
1998-08-20 00:42:14 +04:00
endif
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)
1998-09-02 04:54:34 +04:00
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
1998-08-20 00:42:14 +04:00
ifneq ($(subst /,_,$(shell uname -s)),WINNT)
PROGRAM = nsinstall$(BIN_SUFFIX)
TARGETS += $(OBJDIR)/bsdecho$(BIN_SUFFIX)
endif
DISTTARGETS = $(DIST)/bin/bsdecho$(BINSUFFIX)
1998-08-20 00:42:14 +04:00
# 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)$(OS_RELEASE),SunOS4.1)
INCLUDES += -I$(srcdir)/../nsprpub/pr/include/md
endif
ifeq ($(OS_ARCH)$(OS_RELEASE),IRIX5)
TARGETS += $(OBJDIR)/gtscc$(BIN_SUFFIX)
endif
# Redefine MAKE_OBJDIR for just this directory
define MAKE_OBJDIR
if test ! -d $(@D); then rm -rf $(@D); mkdir $(@D); else true; fi
1998-08-20 00:42:14 +04:00
endef
export:: $(TARGETS) $(DISTTARGETS)
1998-08-20 00:42:14 +04:00
ifeq ($(OS_ARCH),OS2)
# could not get bsdecho rules to work implicitly, so here is explicit ones
$(OBJDIR)/bsdecho.o: bsdecho.c
@$(MAKE_OBJDIR)
$(CC) -Fo$@ $(CFLAGS) -c $<
$(OBJDIR)/bsdecho$(BIN_SUFFIX): $(OBJDIR)/bsdecho.o
@$(MAKE_OBJDIR)
$(LINK_EXE) -OUT:$@ $< $(LDFLAGS)
else
$(OBJDIR)/bsdecho$(BIN_SUFFIX): $(OBJDIR)/bsdecho.o
@$(MAKE_OBJDIR)
1999-03-26 02:47:43 +03:00
$(CC) $(LDFLAGS) -o $@ $<
1998-08-20 00:42:14 +04:00
endif
# Artificial target to make parallel builds play nice
$(DIST)/bin/bsdecho$(BIN_SUFFIX): $(OBJDIR)/nsinstall$(BINSUFFIX) $(OBJDIR)/bsdecho$(BINSUFFIX)
$(INSTALL) -m 444 $^ $(DIST)/bin
1998-08-20 00:42:14 +04:00
$(OBJDIR)/gtscc$(BIN_SUFFIX): $(OBJDIR)/gtscc.o
@$(MAKE_OBJDIR)
1999-03-26 02:47:43 +03:00
$(CC) $(LDFLAGS) -o $@ $< -lelf
1998-08-20 00:42:14 +04:00
$(INSTALL) -m 444 $@ $(DIST)/bin
#update build number from within make script
1998-08-26 08:04:57 +04:00
$(DEPTH)/build/build_number: FORCE
@$(MAKE_OBJDIR)
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/src/navigator.xul $@
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
$(OBJDIR)/bdate$(BIN_SUFFIX): $(OBJDIR)/bdate.o
@$(MAKE_OBJDIR)
1999-03-26 02:47:43 +03:00
$(CC) $(LDFLAGS) -o $@ $<
1998-08-20 00:42:14 +04:00
$(INSTALL) -m 444 $@ $(DIST)/bin
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
# For the continuous build scripts.
show_objname:
@echo $(OBJDIR)
.PHONY: show_objname