2020-09-30 16:53:55 +02: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