diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1998-04-19 03:46:53 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1998-04-19 03:46:53 +0000 |
commit | 23de5c5c225df8e80e674f1e6105c05742374026 (patch) | |
tree | 46e06d4e2368b51702a81543891b3033233a75b0 /lisp/makefile.nt | |
parent | 22e00739084d74140df2ee5eb97c4bdf51e9e08a (diff) | |
download | emacs-23de5c5c225df8e80e674f1e6105c05742374026.tar.gz |
(interdontcompile): New macro.
(install): Copy uncompiled files from international subdir.
Diffstat (limited to 'lisp/makefile.nt')
-rw-r--r-- | lisp/makefile.nt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/makefile.nt b/lisp/makefile.nt index 6ab6003fa87..3a492bb5cda 100644 --- a/lisp/makefile.nt +++ b/lisp/makefile.nt @@ -28,6 +28,9 @@ topdontcompile = cus-load.el forms-d2.el forms-pass.el patcomp.el \ subdirs.el version.el maildontcompile = mail\blessmail.el mail\sc.el playdontcompile = play\bruce.el +interdontcompile = international\latin-1.el international\latin-2.el \ + international\latin-3.el international\latin-4.el \ + international\latin-5.el international\mule-conf.el # # Assuming INSTALL_DIR is defined, copy the elisp files to it @@ -44,8 +47,9 @@ install:; - mkdir $(INSTALL_DIR)\lisp if not exist .\same-dir.tst for %%f in ( $(maildontcompile) ) do $(CP) %%f $(INSTALL_DIR)\lisp\mail if not exist .\same-dir.tst for %%f in ( $(playdontcompile) ) do $(CP) %%f $(INSTALL_DIR)\lisp\play !endif + if not exist .\same-dir.tst for %%f in ( $(interdontcompile) ) do $(CP) %%f $(INSTALL_DIR)\lisp\international - $(DEL) $(INSTALL_DIR)\lisp\same-dir.tst - + # # Maintenance # |