Fixing the dependency on mozilla/config (yanked the include, removed the $(NMAKE)

references. Approved: sar
This commit is contained in:
leaf%mozilla.org 1999-03-01 20:16:01 +00:00
Родитель fd74ec8a35
Коммит acf732dc09
1 изменённых файлов: 6 добавлений и 6 удалений

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

@ -66,9 +66,6 @@ CVSCO_RAPTOR = $(CVSCO)
CVSCO_LIZARD = $(CVSCO)
CVSCO_NETWORK = $(CVSCO)
# rules.mak include config.mak
include <$(DEPTH)\config\config.mak>
## The master target
############################################################
@ -89,14 +86,17 @@ pull_seamonkey:
############################################################
# nmake has to be hardcoded, or we have to depend on mozilla/config
# being pulled already to figure out what $(NMAKE) should be.
clobber_all:
@cd $(MOZ_SRC)\$(MOZ_TOP)\.
$(NMAKE) -f makefile.win clobber_all
nmake -f makefile.win clobber_all
depend:
@cd $(MOZ_SRC)\$(MOZ_TOP)\.
$(NMAKE) -f makefile.win depend
nmake -f makefile.win depend
build_all:
@cd $(MOZ_SRC)\mozilla\.
$(NMAKE) -f makefile.win all
nmake -f makefile.win all