]> code.delx.au - gnu-emacs/blobdiff - lisp/makefile.nt
Delete the hilit19 support--it doesn't work.
[gnu-emacs] / lisp / makefile.nt
index e1d09a36ba87c4edfada9dabdd8ca1657f85d06e..a8a7f2a9e7aac959af5fb5c9c557bf7d92709a99 100644 (file)
@@ -27,16 +27,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
+               - $(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 /q $(INSTALL_DIR)\lisp\same-dir.tst
+               - $(DEL) $(INSTALL_DIR)\lisp\same-dir.tst
                
 
 #
 # Maintenance
 # 
-clean:;                - del /q *~
+clean:;                - $(DEL) *~
                - $(DEL_TREE) deleted
-