mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-21 01:37:16 +00:00
Add clean targets. Add windows equivalent targets.
This commit is contained in:
parent
7734d979a2
commit
d19c20a6bc
15
client.mk
15
client.mk
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user