gecko-dev/nglayout.mk

191 строка
4.3 KiB
Makefile
Исходник Обычный вид История

1998-05-09 00:18:35 +04:00
#!gmake
# 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=.
#
# Command macro defines
#
ifdef MOZ_DATE
CVSCO = cvs -q co -P -D $(MOZ_DATE)
else
1998-08-07 06:10:11 +04:00
CVSCO = cvs -q co -P
endif
1998-05-09 00:18:35 +04:00
THIS_MAKEFILE = nglayout.mk
1998-05-09 00:18:35 +04:00
# Branch tags we use
1998-06-02 05:40:17 +04:00
NETLIB_BRANCH =
1998-07-24 00:59:45 +04:00
LIBPREF_BRANCH = XPCOM_BRANCH
PLUGIN_BRANCH =
1998-05-09 00:18:35 +04:00
# CVS commands to pull the appropriate branch versions
1998-07-30 04:16:06 +04:00
CVSCO_IMGLIB = $(CVSCO)
1998-06-05 05:23:05 +04:00
CVSCO_NETLIB = $(CVSCO)
1998-05-09 00:18:35 +04:00
CVSCO_NGLAYOUT = $(CVSCO)
CVSCO_LIZARD = $(CVSCO)
ifdef MOZ_DATE
CVSCO_LIBPREF = $(CVSCO) -r $(LIBPREF_BRANCH)
CVSCO_PLUGIN = $(CVSCO)
else
CVSCO_LIBPREF = $(CVSCO) -r $(LIBPREF_BRANCH)
1998-08-07 06:10:11 +04:00
CVSCO_PLUGIN = $(CVSCO) -A
endif
1998-05-09 00:18:35 +04:00
# The list of directories that need to be built to build the standalone
# nglayout test program. The order is important.
DIRS = \
config \
1998-06-05 05:23:05 +04:00
dbm \
1998-05-09 00:18:35 +04:00
nsprpub \
jpeg \
modules/libreg \
xpcom \
modules/zlib \
modules/libutil \
sun-java \
nav-java \
js \
modules/security/freenav \
modules/libpref \
modules/libimg \
1998-09-28 02:09:41 +04:00
modules/oji \
1998-09-28 03:30:56 +04:00
modules/plugin \
1998-05-09 00:18:35 +04:00
base \
lib/xp \
1998-06-05 05:23:05 +04:00
lib/libpwcac \
1998-06-02 05:34:57 +04:00
network \
lib/liblayer/include \
1998-05-09 00:18:35 +04:00
htmlparser \
gfx \
1998-10-02 03:46:55 +04:00
dom \
1998-05-09 00:18:35 +04:00
view \
widget \
layout \
webshell
-include $(DEPTH)/config/config.mk
1998-05-09 00:18:35 +04:00
-include $(DEPTH)/config/rules.mk
1998-05-09 00:18:35 +04:00
real_all: all
1998-05-09 00:18:35 +04:00
real_export: export
1998-05-09 00:18:35 +04:00
real_libs: libs
real_install: install
real_clobber: clobber
real_depend: depend
1998-05-09 00:18:35 +04:00
#
# Rules for pulling the source from the cvs repository
#
pull_all: pull_lizard pull_xpcom pull_imglib pull_netlib pull_nglayout pull_plugin pull_autoconf
1998-05-09 00:18:35 +04:00
pull_lizard:
1998-11-03 08:55:18 +03:00
cd $(DEPTH)/..; \
1998-05-09 00:18:35 +04:00
$(CVSCO_LIZARD) mozilla/config; \
1998-06-05 05:23:05 +04:00
$(CVSCO_LIZARD) mozilla/dbm; \
1998-05-09 00:18:35 +04:00
$(CVSCO_LIZARD) mozilla/build/build_number; \
$(CVSCO_LIZARD) mozilla/cmd/xfe/icons/icondata.h; \
$(CVSCO_LIZARD) mozilla/lib/liblayer; \
$(CVSCO_LIZARD) mozilla/modules/zlib; \
$(CVSCO_LIZARD) mozilla/modules/libutil; \
$(CVSCO_LIZARD) mozilla/nsprpub; \
$(CVSCO_LIZARD) mozilla/sun-java; \
$(CVSCO_LIZARD) mozilla/nav-java; \
$(CVSCO_LIZARD) mozilla/js; \
$(CVSCO_LIZARD) mozilla/modules/security/freenav; \
pull_xpcom:
1998-11-03 08:55:18 +03:00
cd $(DEPTH)/..; \
1998-06-05 05:23:05 +04:00
$(CVSCO) -A mozilla/modules/libreg; \
$(CVSCO) -A mozilla/xpcom; \
1998-07-24 00:55:32 +04:00
$(CVSCO_LIBPREF) mozilla/modules/libpref
1998-05-09 00:18:35 +04:00
pull_imglib:
1998-11-03 08:55:18 +03:00
cd $(DEPTH)/..; \
1998-05-09 00:18:35 +04:00
$(CVSCO_IMGLIB) mozilla/jpeg; \
$(CVSCO_IMGLIB) mozilla/modules/libutil; \
$(CVSCO_IMGLIB) mozilla/modules/libimg
1998-07-24 00:55:32 +04:00
pull_plugin:
1998-11-03 08:55:18 +03:00
cd $(DEPTH)/..; \
1998-09-28 03:49:21 +04:00
$(CVSCO_LIZARD) mozilla/modules/oji; \
1998-09-28 03:30:56 +04:00
$(CVSCO_PLUGIN) mozilla/modules/plugin
1998-07-24 00:55:32 +04:00
1998-05-09 00:18:35 +04:00
pull_netlib:
1998-11-03 08:55:18 +03:00
cd $(DEPTH)/..; \
1998-05-09 00:18:35 +04:00
$(CVSCO_NETLIB) mozilla/lib/xp; \
1998-06-05 05:23:05 +04:00
$(CVSCO_NETLIB) mozilla/lib/libpwcac; \
1998-06-02 05:34:57 +04:00
$(CVSCO_NETLIB) mozilla/network; \
1998-05-09 00:18:35 +04:00
$(CVSCO_NETLIB) mozilla/include
pull_nglayout:
1998-11-03 08:55:18 +03:00
cd $(DEPTH)/..; \
1998-05-09 00:18:35 +04:00
$(CVSCO_NGLAYOUT) mozilla/base; \
$(CVSCO_NGLAYOUT) mozilla/dom; \
$(CVSCO_NGLAYOUT) mozilla/gfx; \
$(CVSCO_NGLAYOUT) mozilla/htmlparser; \
$(CVSCO_NGLAYOUT) mozilla/layout; \
$(CVSCO_NGLAYOUT) mozilla/view; \
$(CVSCO_NGLAYOUT) mozilla/webshell; \
$(CVSCO_NGLAYOUT) mozilla/widget
pull_doc:
1998-11-03 08:55:18 +03:00
cd $(DEPTH)/..; \
1998-05-09 00:18:35 +04:00
$(CVSCO_NGLAYOUT) README/nglayout; \
$(CVSCO_NGLAYOUT) mozilla/LICENSE; \
$(CVSCO_NGLAYOUT) mozilla/LEGAL
pull_autoconf:
1998-11-03 08:55:18 +03:00
cd $(DEPTH)/..; \
$(CVSCO_NGLAYOUT) mozilla/build/autoconf; \
1998-11-04 03:41:07 +03:00
$(CVSCO_NGLAYOUT) mozilla/xpfe; \
$(CVSCO_NGLAYOUT) mozilla/Makefile.in; \
$(CVSCO_NGLAYOUT) mozilla/configure.in;
1998-05-09 00:18:35 +04:00
######################################################################
#
# Build tarball
DATE_CMD=date
DATE=$(shell $(DATE_CMD) +%Y%m%d)
TAR = tar
GZIP = gzip
TARBALL = $(MOZ_SRC)/unix-$(DATE).tar
TARFILES = mozilla README/nglayout
tarball: pull_all pull_doc clobber clobber_all real_tar
real_tar:
@echo Making $(TARBALL)
1998-11-03 08:55:18 +03:00
cd $(DEPTH)/..; \
1998-05-09 00:18:35 +04:00
rm -f $(TARBALL) $(TARBALL).gz; \
$(TAR) cf $(TARBALL) $(TARFILES)
@echo Making gzip of $(TARBALL); \
1998-11-03 08:55:18 +03:00
cd $(DEPTH)/..; \
1998-05-09 00:18:35 +04:00
$(GZIP) -9 -q $(TARBALL)