adding targets for building installers. no bug. r=cls

This commit is contained in:
leaf%mozilla.org 2003-10-06 20:39:30 +00:00
Родитель 0fb5daef50
Коммит 639fbc97ee
4 изменённых файлов: 88 добавлений и 0 удалений

Просмотреть файл

@ -44,6 +44,16 @@ endif
ifeq ($(OS_ARCH),OS2)
DIRS += wizard/os2
endif
packages:
make -C packager
installer: packages
ifeq ($(OS_ARCH),Linux)
make -C packager/unix
endif
ifeq ($(OS_ARCH),WINNT)
make -C wizard/windows/builder
endif
include $(topsrcdir)/config/rules.mk

Просмотреть файл

@ -38,8 +38,10 @@ MOZ_PKG_FORMAT = DMG
else
ifeq (,$(filter-out OS2 WINNT, $(OS_ARCH)))
MOZ_PKG_FORMAT = ZIP
INSTALLER_DIR = windows
else
MOZ_PKG_FORMAT = TGZ
INSTALLER_DIR = unix
endif
endif
endif # MOZ_PKG_FORMAT
@ -256,3 +258,7 @@ endif
@echo "Done creating $(PACKAGE)."
endif
installer:
ifdef INSTALLER_DIR
make -C $(INSTALLER_DIR) installer
endif

Просмотреть файл

@ -0,0 +1,36 @@
#
# 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 Communicator client code,
# released March 31, 1998.
#
# 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):
# leaf nunes <leaf@mozilla.org>
DEPTH = ../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = xpinstall
installer:
$(PERL) $(srcdir)/deliver.pl -o $(DEPTH) -s $(topsrcdir)
include $(topsrcdir)/config/rules.mk

Просмотреть файл

@ -0,0 +1,36 @@
#
# 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 Communicator client code,
# released March 31, 1998.
#
# 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):
# leaf nunes <leaf@mozilla.org>
DEPTH = ../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = xpinstall
installer:
$(PERL) build.pl
include $(topsrcdir)/config/rules.mk