diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-11-22 14:36:35 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-11-22 14:36:35 +0000 |
commit | 45760b79f1f852ece64a7fa09c32521a09a4dda5 (patch) | |
tree | a4c390a26222ea6fe046689bb6f4d8fc7fb9594b /nt/makefile.nt | |
parent | 02fda8fffb6fac403b152507496e3afebd5ab4cd (diff) | |
download | emacs-45760b79f1f852ece64a7fa09c32521a09a4dda5.tar.gz |
(all): Build leim if present.
(install): Install leim if present.
(clean): Clean leim if present.
Diffstat (limited to 'nt/makefile.nt')
-rw-r--r-- | nt/makefile.nt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/nt/makefile.nt b/nt/makefile.nt index a156993540a..17f92b07fee 100644 --- a/nt/makefile.nt +++ b/nt/makefile.nt @@ -90,6 +90,8 @@ all: $(BLD) $(ALL) $(BUILD_CMD) cd ..\lisp $(BUILD_CMD) + cd ..\leim + if exist makefile.nt $(BUILD_CMD) cd ..\nt $(INSTALL_DIR): @@ -126,6 +128,8 @@ install: all $(INSTALL_DIR) batch_files $(INSTALL_CMD) cd ..\lisp $(INSTALL_CMD) + cd ..\leim + if exist makefile.nt $(INSTALL_CMD) cd ..\nt - $(CP) $(BLD)\addpm.exe $(INSTALL_DIR)\bin - $(CP) $(BLD)\ddeclient.exe $(INSTALL_DIR)\bin @@ -199,4 +203,6 @@ clean:; - $(DEL) *~ *.pdb $(CLEAN_CMD) cd ..\lisp $(CLEAN_CMD) + cd ..\leim + if exist makefile.nt $(CLEAN_CMD) cd ..\nt |