diff options
| author | Andrew Innes | 2001-01-24 12:31:07 +0000 |
|---|---|---|
| committer | Andrew Innes | 2001-01-24 12:31:07 +0000 |
| commit | daae70def35f936b560acfb382555339bb98259b (patch) | |
| tree | 3eeb069b9da76bda8783a6d6db5a35837f04513f | |
| parent | d56aaa640eba871e373c19abbba90efedc45d005 (diff) | |
| download | emacs-daae70def35f936b560acfb382555339bb98259b.tar.gz emacs-daae70def35f936b560acfb382555339bb98259b.zip | |
(cleanall-other-dirs-nmake):
(cleanall-other-dirs-gmake): New targets.
(cleanall): Invoke them.
| -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 @@ | |||
| 1 | 2001-01-24 Andrew Innes <andrewi@gnu.org> | ||
| 2 | |||
| 3 | * makefile.w32-in (cleanall-other-dirs-nmake): | ||
| 4 | (cleanall-other-dirs-gmake): New targets. | ||
| 5 | (cleanall): Invoke them. | ||
| 6 | |||
| 1 | 2001-01-19 Andrew Innes <andrewi@gnu.org> | 7 | 2001-01-19 Andrew Innes <andrewi@gnu.org> |
| 2 | 8 | ||
| 3 | * addpm.c (env_vars): Add a version-independent site-lisp | 9 | * 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: | |||
| 196 | $(MAKE) $(MFLAGS) -C ../lisp clean | 196 | $(MAKE) $(MFLAGS) -C ../lisp clean |
| 197 | $(MAKE) $(MFLAGS) -C ../leim clean | 197 | $(MAKE) $(MFLAGS) -C ../leim clean |
| 198 | 198 | ||
| 199 | cleanall: clean | 199 | cleanall-other-dirs-nmake: |
| 200 | cd ..\lib-src | ||
| 201 | $(MAKE) $(MFLAGS) cleanall | ||
| 202 | cd ..\src | ||
| 203 | $(MAKE) $(MFLAGS) cleanall | ||
| 204 | cd ..\nt | ||
| 205 | |||
| 206 | cleanall-other-dirs-gmake: | ||
| 207 | $(MAKE) $(MFLAGS) -C ../lib-src cleanall | ||
| 208 | $(MAKE) $(MFLAGS) -C ../src cleanall | ||
| 209 | |||
| 210 | cleanall: clean cleanall-other-dirs-$(MAKETYPE) | ||
| 200 | - $(DEL_TREE) obj | 211 | - $(DEL_TREE) obj |
| 201 | - $(DEL_TREE) obj-spd | 212 | - $(DEL_TREE) obj-spd |
| 202 | - $(DEL_TREE) oo | 213 | - $(DEL_TREE) oo |