1998-03-28 02:44:41 +00:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
#//
|
|
|
|
#// Makefile fo NS/CONFIG - various commands used by other makefiles
|
|
|
|
#//
|
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
|
|
|
|
!if "$(MOZ_BITS)" == "16"
|
|
|
|
!error This makefile must be build using 32-bit tools
|
|
|
|
!endif
|
|
|
|
|
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
#//
|
|
|
|
#// Specify the depth of the current directory relative to the
|
|
|
|
#// root of NS
|
|
|
|
#//
|
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
DEPTH = ..
|
|
|
|
|
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
#//
|
|
|
|
#// Include the common makefile rules
|
|
|
|
#//
|
|
|
|
#//------------------------------------------------------------------------
|
|
|
|
include <$(DEPTH)/config/rules.mak>
|
|
|
|
|
1998-09-01 00:02:58 +00:00
|
|
|
#// Rule to set the timebomb on official mozilla builds
|
|
|
|
!ifdef MOZILLA_OFFICIAL
|
1998-09-18 10:09:15 +00:00
|
|
|
export:: $(DEPTH)/build/build_number
|
1998-09-10 22:50:21 +00:00
|
|
|
$(PERL) set-timebomb.pl 0 30
|
1998-09-01 00:02:58 +00:00
|
|
|
!endif
|
|
|
|
|
1998-03-28 02:44:41 +00:00
|
|
|
#//
|
|
|
|
#// Rule to build makedir.exe
|
|
|
|
#//
|
|
|
|
makecopy.exe:: makecopy.c
|
|
|
|
$(CC) -O2 -MD makecopy.c
|
|
|
|
|
|
|
|
mangle.exe:: mangle.c
|
|
|
|
$(CC) -O2 -MD mangle.c
|
|
|
|
|
|
|
|
mantomak.exe:: mantomak.c
|
|
|
|
$(CC) -O2 -MD mantomak.c
|
|
|
|
|
|
|
|
bin2rc.exe:: bin2rc.c
|
|
|
|
$(CC) -O2 -MD bin2rc.c
|
|
|
|
|
1998-09-18 10:09:15 +00:00
|
|
|
export:: makecopy.exe mangle.exe mantomak.exe bin2rc.exe $(DEPTH)/build/build_number
|
|
|
|
|
|
|
|
#update build number from within make script
|
|
|
|
$(DEPTH)/build/build_number:: FORCE
|
|
|
|
$(RM) $@
|
|
|
|
$(PERL) bdate.pl > $@
|
|
|
|
$(PERL) aboutime.pl $(DEPTH)/l10n/us/xp/about-all.html $@
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
install:: export
|
1998-09-01 00:02:58 +00:00
|
|
|
|
1998-09-18 10:09:15 +00:00
|
|
|
FORCE:
|