Add clean targets. Add windows equivalent targets.

This commit is contained in:
slamm%netscape.com 1999-02-17 17:59:06 +00:00
parent 7734d979a2
commit d19c20a6bc

View File

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