X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/2ed027ede98af20e2a37f0d2e169e6bb8dac069b..96439b6aabaca49a1fb43bf5d526e82f12b0924b:/lisp/makefile.nt diff --git a/lisp/makefile.nt b/lisp/makefile.nt index 51e27bdb1e..67699fecf3 100644 --- a/lisp/makefile.nt +++ b/lisp/makefile.nt @@ -15,8 +15,9 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with GNU Emacs; see the file COPYING. If not, write to -# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +# along with GNU Emacs; see the file COPYING. If not, write to the +# Free Software Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. # !include ..\nt\makefile.def @@ -27,15 +28,15 @@ all: # Assuming INSTALL_DIR is defined, copy the elisp files to it # install:; - mkdir $(INSTALL_DIR)\lisp - - del .\same-dir.tst - - del $(INSTALL_DIR)\lisp\same-dir.tst + - $(DEL) .\same-dir.tst + - $(DEL) $(INSTALL_DIR)\lisp\same-dir.tst echo SameDirTest > $(INSTALL_DIR)\lisp\same-dir.tst if not exist .\same-dir.tst $(CP_DIR) . $(INSTALL_DIR)\lisp - - del $(INSTALL_DIR)\lisp\same-dir.tst + - $(DEL) $(INSTALL_DIR)\lisp\same-dir.tst # # Maintenance # -clean:; - del *~ +clean:; - $(DEL) *~ - $(DEL_TREE) deleted