home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 57
/
Amiga_Dream_57.iso
/
Amiga
/
Programmation
/
Assembleur
/
ESA.lha
/
ESA
/
examples
/
sss
/
do
< prev
next >
Wrap
AmigaDOS Script File
|
1998-10-30
|
501b
|
26 lines
.key list
;if you call this script with the parameter 'y', the source produced by
;ESA won't be deleted (comments will be included)
set ESA ESA
set ASM phx
set EXE sss
set OPT to
;ESA = ESA executable path
;ASM = your assembler's executable path
;EXE = name of the executable produced by the assembler
;OPT = option accepted by your assembler to specify EXE
failat 1
if "<list>" eq "y"
$ESA main.esa -c
$ASM main.s $OPT $EXE
else
$ESA main.esa
$ASM main.s $OPT $EXE
delete main.s
endif