2025-04-27 07:49:33 -04:00

14 lines
157 B
Batchfile

@echo off
if "%1"=="" goto bld
del *.dll
del *.sym
del *.map
del *.obj
del *.bak
del *.res
del *.lnk
goto done
:bld
nmake -f makefile.dos
:done