X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/61fac91166ace2b66be0506d906e3a8f3e79f62a..df211784d690c15693a92b4c9e91dfa18351c98d:/lisp/makefile.nt diff --git a/lisp/makefile.nt b/lisp/makefile.nt index a4c7559676..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,16 +28,15 @@ all: # Assuming INSTALL_DIR is defined, copy the elisp files to it # install:; - mkdir $(INSTALL_DIR)\lisp - - del /q .\same-dir.tst - - del /q $(INSTALL_DIR)\lisp\same-dir.tst - echo SameDirTest > .\same-dir.tst - if not exist $(INSTALL_DIR)\lisp\same-dir.tst $(CP_DIR) . $(INSTALL_DIR)\lisp - - del /q .\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 # # Maintenance # -clean:; - del /q *~ +clean:; - $(DEL) *~ - $(DEL_TREE) deleted -