diff options
author | Andrew Innes <andrewi@gnu.org> | 2000-10-17 09:13:06 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 2000-10-17 09:13:06 +0000 |
commit | f7e383f09531290e81c5478f0b52295c402430c0 (patch) | |
tree | e9f6c7ccc965d2456334567c7bfc683ff2a68521 /nt | |
parent | 4ad6e379ed00ffd3291f5bfb18cf784e500d1a77 (diff) | |
download | emacs-f7e383f09531290e81c5478f0b52295c402430c0.tar.gz |
(recompile): New target to recompile lisp
directory.
(recompile-CMD, recompile-SH): New support targets.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/ChangeLog | 6 | ||||
-rw-r--r-- | nt/makefile.w32-in | 10 |
2 files changed, 16 insertions, 0 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index a8d4d1414a2..331f316d924 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,9 @@ +2000-10-17 Andrew Innes <andrewi@gnu.org> + + * makefile.w32-in (recompile): New target to recompile lisp + directory. + (recompile-CMD, recompile-SH): New support targets. + 2000-09-24 Jason Rumney <jasonr@gnu.org> * config.nt (NO_RETURN): Define it. diff --git a/nt/makefile.w32-in b/nt/makefile.w32-in index 8afa10fa62b..7106f7a41f9 100644 --- a/nt/makefile.w32-in +++ b/nt/makefile.w32-in @@ -86,6 +86,16 @@ all-other-dirs-SH: $(MAKE) $(MFLAGS) -C ../lisp all $(MAKE) $(MFLAGS) -C ../leim all +recompile: recompile-$(SHELLTYPE) + +recompile-CMD: + cd ..\lisp + $(MAKE) $(MFLAGS) recompile + cd ..\nt + +recompile-SH: + $(MAKE) $(MFLAGS) -C ../lisp recompile + bootstrap: $(BLD) $(ALL) bootstrap-$(SHELLTYPE) bootstrap-CMD: |