diff options
| author | Geoff Voelker | 1995-11-22 19:04:36 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1995-11-22 19:04:36 +0000 |
| commit | 2ed027ede98af20e2a37f0d2e169e6bb8dac069b (patch) | |
| tree | 1b202b86cc1d3ae915753382cb50137225224566 /lisp/makefile.nt | |
| parent | c02ab10709b15c0d39e8f1e97a7879c019154820 (diff) | |
| download | emacs-2ed027ede98af20e2a37f0d2e169e6bb8dac069b.tar.gz emacs-2ed027ede98af20e2a37f0d2e169e6bb8dac069b.zip | |
(install, clean): Don't use switches to del not supported by Win95.
Diffstat (limited to 'lisp/makefile.nt')
| -rw-r--r-- | lisp/makefile.nt | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/makefile.nt b/lisp/makefile.nt index e1d09a36ba8..51e27bdb1ea 100644 --- a/lisp/makefile.nt +++ b/lisp/makefile.nt | |||
| @@ -27,16 +27,15 @@ all: | |||
| 27 | # Assuming INSTALL_DIR is defined, copy the elisp files to it | 27 | # Assuming INSTALL_DIR is defined, copy the elisp files to it |
| 28 | # | 28 | # |
| 29 | install:; - mkdir $(INSTALL_DIR)\lisp | 29 | install:; - mkdir $(INSTALL_DIR)\lisp |
| 30 | - del /q .\same-dir.tst | 30 | - del .\same-dir.tst |
| 31 | - del /q $(INSTALL_DIR)\lisp\same-dir.tst | 31 | - del $(INSTALL_DIR)\lisp\same-dir.tst |
| 32 | echo SameDirTest > $(INSTALL_DIR)\lisp\same-dir.tst | 32 | echo SameDirTest > $(INSTALL_DIR)\lisp\same-dir.tst |
| 33 | if not exist .\same-dir.tst $(CP_DIR) . $(INSTALL_DIR)\lisp | 33 | if not exist .\same-dir.tst $(CP_DIR) . $(INSTALL_DIR)\lisp |
| 34 | - del /q $(INSTALL_DIR)\lisp\same-dir.tst | 34 | - del $(INSTALL_DIR)\lisp\same-dir.tst |
| 35 | 35 | ||
| 36 | 36 | ||
| 37 | # | 37 | # |
| 38 | # Maintenance | 38 | # Maintenance |
| 39 | # | 39 | # |
| 40 | clean:; - del /q *~ | 40 | clean:; - del *~ |
| 41 | - $(DEL_TREE) deleted | 41 | - $(DEL_TREE) deleted |
| 42 | |||