Changes to allow pulling by Date stamp. Approved by kipp

This commit is contained in:
spider%netscape.com 1998-10-02 17:50:50 +00:00
Родитель 99c6180557
Коммит 9104dfde1c
2 изменённых файлов: 26 добавлений и 3 удалений

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

@ -49,22 +49,35 @@ W32LOBJS = $(OBJS: .= +-.)
# Command macro defines # Command macro defines
# #
!if defined(MOZ_DATE)
CVSCO = cvs -q co -P -D $(MOZ_DATE)
!else
CVSCO = cvs -q co -P CVSCO = cvs -q co -P
!endif
# Branch tags we use # Branch tags we use
IMGLIB_BRANCH = IMGLIB_BRANCH =
PLUGIN_BRANCH = PLUGIN_BRANCH =
LIBPREF_BRANCH = XPCOM_BRANCH LIBPREF_BRANCH = XPCOM_BRANCH
XPCOM_BRANCH = XPCOM_BRANCH =
!if defined(MOZ_DATE)
# CVS commands to pull the appropriate branch versions
CVSCO_LIBPREF = $(CVSCO)
CVSCO_PLUGIN = $(CVSCO)
!else
# CVS commands to pull the appropriate branch versions # CVS commands to pull the appropriate branch versions
CVSCO_XPCOM = $(CVSCO)
CVSCO_LIBPREF = $(CVSCO) -r $(LIBPREF_BRANCH) CVSCO_LIBPREF = $(CVSCO) -r $(LIBPREF_BRANCH)
CVSCO_PLUGIN = $(CVSCO) -A
!endif
CVSCO_XPCOM = $(CVSCO)
CVSCO_IMGLIB = $(CVSCO) CVSCO_IMGLIB = $(CVSCO)
CVSCO_RAPTOR = $(CVSCO) CVSCO_RAPTOR = $(CVSCO)
CVSCO_LIZARD = $(CVSCO) CVSCO_LIZARD = $(CVSCO)
CVSCO_NETWORK = $(CVSCO) CVSCO_NETWORK = $(CVSCO)
CVSCO_PLUGIN = $(CVSCO) -A
# The list of directories that need to be built to build the # The list of directories that need to be built to build the
# standalone nglayout test program. The order is important. The # standalone nglayout test program. The order is important. The

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

@ -20,7 +20,11 @@ DEPTH=.
# Command macro defines # Command macro defines
# #
ifdef MOZ_DATE
CVSCO = cvs -q co -P -D $(MOZ_DATE)
else
CVSCO = cvs -q co -P CVSCO = cvs -q co -P
endif
THIS_MAKEFILE = nglayout.mk THIS_MAKEFILE = nglayout.mk
@ -30,12 +34,18 @@ LIBPREF_BRANCH = XPCOM_BRANCH
PLUGIN_BRANCH = PLUGIN_BRANCH =
# CVS commands to pull the appropriate branch versions # CVS commands to pull the appropriate branch versions
CVSCO_LIBPREF = $(CVSCO) -r $(LIBPREF_BRANCH)
CVSCO_IMGLIB = $(CVSCO) CVSCO_IMGLIB = $(CVSCO)
CVSCO_NETLIB = $(CVSCO) CVSCO_NETLIB = $(CVSCO)
CVSCO_NGLAYOUT = $(CVSCO) CVSCO_NGLAYOUT = $(CVSCO)
CVSCO_LIZARD = $(CVSCO) CVSCO_LIZARD = $(CVSCO)
ifdef MOZ_DATE
CVSCO_LIBPREF = $(CVSCO)
CVSCO_PLUGIN = $(CVSCO)
else
CVSCO_LIBPREF = $(CVSCO) -r $(LIBPREF_BRANCH)
CVSCO_PLUGIN = $(CVSCO) -A CVSCO_PLUGIN = $(CVSCO) -A
endif
# The list of directories that need to be built to build the standalone # The list of directories that need to be built to build the standalone
# nglayout test program. The order is important. # nglayout test program. The order is important.