Add clean targets. Add windows equivalent targets.

This commit is contained in:
slamm%netscape.com 1999-02-17 17:59:06 +00:00
Родитель 7734d979a2
Коммит d19c20a6bc
1 изменённых файлов: 13 добавлений и 2 удалений

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

@ -37,7 +37,7 @@
# Options:
# NSPR_INSTALL_DIR - nspr directory for configure --with-nspr=
# USE_PTHREADS - pthreads for nspr and configure
# MOZ_OBJDIR - destination Object Directory
# MOZ_OBJDIR - destination Object Directory (relative path)
# also,
# MOZ_CVS_FLAGS - flags to pass to CVS
# MOZ_CHECKOUT_FLAGS - flags to pass after cvs co
@ -185,7 +185,14 @@ CONFIG_FLAGS := \
all: checkout build
.PHONY: checkout nspr build
.PHONY: checkout nspr build clean realclean
# Windows equivalents
pull_all: checkout
build_all: build
clobber: clean
clobber_all: realclean
pull_and_build_all: checkout build
#
# CVS checkout
@ -261,5 +268,9 @@ $(NSPR_INSTALL_DIR)/lib/libnspr21.so:
# cd $(ROOTDIR) && $(CVSCO) $(NSPR_BRANCH) NSPR
# Pass these target onto the real build system
clean realclean:
cd $(OBJDIR); $(MAKE) $@;
# (! IS_FIRST_CHECKOUT)
endif