📄 makefile.in
字号:
#! gmake# # The contents of this file are subject to the Mozilla 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/MPL/# # 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 the Netscape Portable Runtime (NSPR).# # The Initial Developer of the Original Code is Netscape# Communications Corporation. Portions created by Netscape are # Copyright (C) 1998-2000 Netscape Communications Corporation. All# Rights Reserved.# # Contributor(s):# # Alternatively, the contents of this file may be used under the# terms of the GNU General Public License Version 2 or later (the# "GPL"), in which case the provisions of the GPL are applicable # instead of those above. If you wish to allow use of your # version of this file only under the terms of the GPL and not to# allow others to use your version of this file under the MPL,# indicate your decision by deleting the provisions above and# replace them with the notice and other provisions required by# the GPL. If you do not delete the provisions above, a recipient# may use your version of this file under either the MPL or the# GPL.# MOD_DEPTH = .topsrcdir = @top_srcdir@srcdir = @srcdir@VPATH = @srcdir@include $(MOD_DEPTH)/config/autoconf.mkMAKE := $(patsubst -j%,,$(MAKE)) -j1DIRS = config pr libifdef MOZILLA_CLIENTPR_CLIENT_BUILD = 1PR_CLIENT_BUILD_UNIX = 1endifDIST_GARBAGE = config.cache config.log config.statusall:: config.status exportinclude $(topsrcdir)/config/rules.mkconfig.status:: configureifeq ($(OS_ARCH),WINNT) sh $(srcdir)/configure --no-create --no-recursionelse ./config.status --recheck && ./config.statusendif## The -ll option of zip converts CR LF to LF.#ifeq ($(OS_ARCH),WINNT)ZIP_ASCII_OPT = -llendififdef PR_CLIENT_BUILDexport:: rm -r -f $(DIST)/../public/nsprifdef PR_CLIENT_BUILD_UNIX rm -f $(dist_libdir)/libnspr.a rm -f $(dist_bindir)/libnspr.$(DLL_SUFFIX)endifendif# Delete config/autoconf.mk last because it is included by every makefile.distclean:: @echo "cd pr/tests; $(MAKE) $@" @$(MAKE) -C pr/tests $@ rm -f config/autoconf.mkrelease:: echo $(BUILD_NUMBER) > $(RELEASE_DIR)/$(BUILD_NUMBER)/version.df @if test -f imports.df; then \ echo "cp -f imports.df $(RELEASE_DIR)/$(BUILD_NUMBER)/imports.df"; \ cp -f imports.df $(RELEASE_DIR)/$(BUILD_NUMBER)/imports.df; \ else \ echo "echo > $(RELEASE_DIR)/$(BUILD_NUMBER)/imports.df"; \ echo > $(RELEASE_DIR)/$(BUILD_NUMBER)/imports.df; \ fi cd $(RELEASE_DIR)/$(BUILD_NUMBER)/$(OBJDIR_NAME); \ rm -rf META-INF; mkdir META-INF; cd META-INF; \ echo "Manifest-Version: 1.0" > MANIFEST.MF; \ echo "" >> MANIFEST.MF; \ cd ..; rm -f mdbinary.jar; zip -r mdbinary.jar META-INF bin lib; \ rm -rf META-INF; \ cd include; \ rm -rf META-INF; mkdir META-INF; cd META-INF; \ echo "Manifest-Version: 1.0" > MANIFEST.MF; \ echo "" >> MANIFEST.MF; \ cd ..; rm -f mdheader.jar; zip $(ZIP_ASCII_OPT) -r mdheader.jar *; \ rm -rf META-INFifeq ($(OS_ARCH),WINNT) @if test ! -d $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER); then \ rm -rf $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER); \ echo "making directory $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)"; \ $(topsrcdir)/config/prmkdir.bat $(MDIST_DOS)\\$(MOD_NAME)\\$(BUILD_NUMBER); \ fi @if test ! -d $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/$(RELEASE_OBJDIR_NAME); then \ rm -rf $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/$(RELEASE_OBJDIR_NAME); \ echo "making directory $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/$(RELEASE_OBJDIR_NAME)"; \ $(topsrcdir)/config/prmkdir.bat $(MDIST_DOS)\\$(MOD_NAME)\\$(BUILD_NUMBER)\\$(RELEASE_OBJDIR_NAME); \ fielse @if test ! -d $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER); then \ rm -rf $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER); \ echo "making directory $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)"; \ $(NSINSTALL) -D $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER); \ chmod 775 $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER); \ fi @if test ! -d $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/$(RELEASE_OBJDIR_NAME); then \ rm -rf $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/$(RELEASE_OBJDIR_NAME); \ echo "making directory $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/$(RELEASE_OBJDIR_NAME)"; \ $(NSINSTALL) -D $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/$(RELEASE_OBJDIR_NAME); \ chmod 775 $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/$(RELEASE_OBJDIR_NAME); \ fiendif cd $(RELEASE_DIR)/$(BUILD_NUMBER); \ cp -f version.df imports.df $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER); \ chmod 664 $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/version.df; \ chmod 664 $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/imports.df; \ cd $(OBJDIR_NAME); \ cp -f mdbinary.jar $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/$(RELEASE_OBJDIR_NAME); \ chmod 664 $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/$(RELEASE_OBJDIR_NAME)/mdbinary.jar; \ cd include; \ cp -f mdheader.jar $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/$(RELEASE_OBJDIR_NAME); \ chmod 664 $(MDIST)/$(MOD_NAME)/$(BUILD_NUMBER)/$(RELEASE_OBJDIR_NAME)/mdheader.jardepend: @echo "NSPR20 has no dependencies. Skipped."
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -