diff options
author | H. Peter Anvin <hpa@linux.intel.com> | 2010-06-15 10:49:09 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2010-06-15 10:49:09 -0700 |
commit | d68d9181df5d650de296bc9a8de10860b8a00805 (patch) | |
tree | 6a3ae13523d3db179d5a1a912d7e7e9076c7e5f3 /Mkfiles | |
parent | 5e2e8b9105793eff7704e2fec4b3edee0c4208f6 (diff) | |
download | nasm-d68d9181df5d650de296bc9a8de10860b8a00805.tar.gz nasm-d68d9181df5d650de296bc9a8de10860b8a00805.tar.bz2 nasm-d68d9181df5d650de296bc9a8de10860b8a00805.zip |
openwcom.mak: drop /f from delete commands
Classic DOS doesn't have del /f, and we don't really need it.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'Mkfiles')
-rw-r--r-- | Mkfiles/openwcom.mak | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/Mkfiles/openwcom.mak b/Mkfiles/openwcom.mak index 981cd3e..6dd2293 100644 --- a/Mkfiles/openwcom.mak +++ b/Mkfiles/openwcom.mak @@ -159,45 +159,45 @@ PERLREQ = macros.c insnsb.c insnsa.c insnsd.c insnsi.h insnsn.c & perlreq: $(PERLREQ) clean: .SYMBOLIC - -del /f *.$(O) - -del /f *.s - -del /f *.i - -del /f lib\*.$(O) - -del /f lib\*.s - -del /f lib\*.i - -del /f output\*.$(O) - -del /f output\*.s - -del /f output\*.i - -del /f nasm$(X) - -del /f ndisasm$(X) + -del *.$(O) + -del *.s + -del *.i + -del lib\*.$(O) + -del lib\*.s + -del lib\*.i + -del output\*.$(O) + -del output\*.s + -del output\*.i + -del nasm$(X) + -del ndisasm$(X) rem cd rdoff && $(MAKE) clean distclean: clean .SYMBOLIC - -del /f config.h - -del /f config.log - -del /f config.status - -del /f Makefile - -del /f *~ - -del /f *.bak - -del /f *.lst - -del /f *.bin - -del /f output\*~ - -del /f output\*.bak - -del /f test\*.lst - -del /f test\*.bin - -del /f test\*.$(O) - -del /f test\*.bin - -del /f/s autom4te*.cache + -del config.h + -del config.log + -del config.status + -del Makefile + -del *~ + -del *.bak + -del *.lst + -del *.bin + -del output\*~ + -del output\*.bak + -del test\*.lst + -del test\*.bin + -del test\*.$(O) + -del test\*.bin + -del /s autom4te*.cache rem cd rdoff && $(MAKE) distclean cleaner: clean .SYMBOLIC - -del /f $(PERLREQ) - -del /f *.man - -del /f nasm.spec + -del $(PERLREQ) + -del *.man + -del nasm.spec rem cd doc && $(MAKE) clean spotless: distclean cleaner .SYMBOLIC - -del /f doc\Makefile + -del doc\Makefile -del doc\*~ -del doc\*.bak |