diff options
author | Andrew Innes <andrewi@gnu.org> | 2001-01-24 12:31:07 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 2001-01-24 12:31:07 +0000 |
commit | daae70def35f936b560acfb382555339bb98259b (patch) | |
tree | 3eeb069b9da76bda8783a6d6db5a35837f04513f /nt | |
parent | d56aaa640eba871e373c19abbba90efedc45d005 (diff) | |
download | emacs-daae70def35f936b560acfb382555339bb98259b.tar.gz |
(cleanall-other-dirs-nmake):
(cleanall-other-dirs-gmake): New targets.
(cleanall): Invoke them.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/ChangeLog | 6 | ||||
-rw-r--r-- | nt/makefile.w32-in | 13 |
2 files changed, 18 insertions, 1 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 443f688b2ce..d14531a5bfb 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,9 @@ +2001-01-24 Andrew Innes <andrewi@gnu.org>
+
+ * makefile.w32-in (cleanall-other-dirs-nmake):
+ (cleanall-other-dirs-gmake): New targets.
+ (cleanall): Invoke them.
+
2001-01-19 Andrew Innes <andrewi@gnu.org>
* addpm.c (env_vars): Add a version-independent site-lisp
diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in index 7869a8f620e..01862ade8f3 100644 --- a/nt/makefile.w32-in +++ b/nt/makefile.w32-in @@ -196,7 +196,18 @@ clean-other-dirs-gmake: $(MAKE) $(MFLAGS) -C ../lisp clean $(MAKE) $(MFLAGS) -C ../leim clean -cleanall: clean +cleanall-other-dirs-nmake: + cd ..\lib-src + $(MAKE) $(MFLAGS) cleanall + cd ..\src + $(MAKE) $(MFLAGS) cleanall + cd ..\nt + +cleanall-other-dirs-gmake: + $(MAKE) $(MFLAGS) -C ../lib-src cleanall + $(MAKE) $(MFLAGS) -C ../src cleanall + +cleanall: clean cleanall-other-dirs-$(MAKETYPE) - $(DEL_TREE) obj - $(DEL_TREE) obj-spd - $(DEL_TREE) oo |