~ubuntu-branches/ubuntu/raring/vice/raring

« back to all changes in this revision

Viewing changes to src/arch/os2/makeclean.cmd

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2009-03-31 00:37:15 UTC
  • mfrom: (1.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: james.westby@ubuntu.com-20090331003715-mzclchtl0dp7fcl0
Tags: upstream-2.1.dfsg
ImportĀ upstreamĀ versionĀ 2.1.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
@Echo Off
2
 
 
3
 
echo ------- Make clean -------
4
 
 
5
 
if "%1"=="" goto ALL
6
 
 
7
 
echo  Cleaning vac++\%1\*.obj
8
 
xdel vac++\%1\*.obj  /s /l /n /d
9
 
echo  Cleaning vac++\%1\*.ics
10
 
xdel vac++\%1\*.ics  /s /l /n /d
11
 
goto END
12
 
 
13
 
:ALL
14
 
 
15
 
if "%1"=="all" goto CLEAN
16
 
goto END
17
 
 
18
 
:CLEAN
19
 
echo Cleaning vac++\*.obj
20
 
xdel vac++\*.obj  /s /l /n /d
21
 
 
22
 
:END
23
 
echo -------    Done    -------
 
1
@Echo Off
 
2
 
 
3
echo ------- Make clean -------
 
4
 
 
5
if "%1"=="" goto ALL
 
6
 
 
7
echo  Cleaning vac++\%1\*.obj
 
8
xdel vac++\%1\*.obj  /s /l /n /d
 
9
echo  Cleaning vac++\%1\*.ics
 
10
xdel vac++\%1\*.ics  /s /l /n /d
 
11
goto END
 
12
 
 
13
:ALL
 
14
 
 
15
if "%1"=="all" goto CLEAN
 
16
goto END
 
17
 
 
18
:CLEAN
 
19
echo Cleaning vac++\*.obj
 
20
xdel vac++\*.obj  /s /l /n /d
 
21
 
 
22
:END
 
23
echo -------    Done    -------