Adding in depend and clobber support

This commit is contained in:
spider%netscape.com 1998-09-04 17:32:19 +00:00
parent f62e951f1c
commit 9fbd10b244

View File

@ -150,6 +150,10 @@ TREX_DIRS = \
default:: build_all
depend:: depend_dist depend_trex
clobber:: clobber_dist clobber_trex
pull_and_build_all:: pull_all \
build_all
@ -248,5 +252,27 @@ build_trex::
cd $(MOZ_SRC)\.
clobber_all::
depend_dist::
cd $(MOZ_SRC)\$(MOZ_TOP)\.
nmake -f nglayout.mak depend
cd $(MOZ_SRC)\.
depend_trex::
cd $(MOZ_SRC)\$(MOZ_TOP)\xpfc
nmake -f makefile.win depend
cd $(MOZ_SRC)\$(MOZ_TOP)\calendar
nmake -f makefile.win depend
cd $(MOZ_SRC)\.
clobber_dist::
cd $(MOZ_SRC)\$(MOZ_TOP)\.
nmake -f nglayout.mak clobber_all
cd $(MOZ_SRC)\.
clobber_trex::
cd $(MOZ_SRC)\$(MOZ_TOP)\xpfc
nmake -f makefile.win clobber_all
cd $(MOZ_SRC)\$(MOZ_TOP)\calendar
nmake -f makefile.win clobber_all
cd $(MOZ_SRC)\.