diff options
-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: |