File: cleanwin.cmd

package info (click to toggle)
ipmiutil 3.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,992 kB
  • sloc: ansic: 73,406; sh: 15,281; cpp: 2,245; makefile: 520
file content (25 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
@echo off
REM # cleanwin.cmd
REM #   clean ipmiutil for windows
REM #

REM call cleanssl (?)

set UTMAKE=ipmiutil.mak
echo %LIBPATH% |findstr /C:amd64 >NUL
if %errorlevel% EQU 0  set UTMAKE=ipmiutil64.mak

cd lib
nmake /nologo -f ipmilib.mak clean
cd ..
REM # echo make lib done

cd util
nmake /nologo -f %UTMAKE% clean
del tmp\*.obj 2>NUL
del *.pdb 2>NUL
del *.manifest 2>NUL
cd ..
REM # echo make util done

echo cleanwin ipmiutil done