makeasmfiles.sh
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:0k
源码类别:

Symbian

开发平台:

Visual C++

  1. #!/bin/sh
  2. #
  3. # Add any new ASM files here
  4. #
  5. for i in alphablend;
  6.   # ELF
  7.   do echo Building ELF ASM files.......
  8.   nasm -felf -DELF -oelf/$i.o  $i.asm;
  9.   # WIN32/COFF
  10.   echo Building Windows ASM files win32/coff.......
  11.   nasm -fwin32 -DWIN32 -o win32/$i.obj $i.asm;
  12.   nasm -fcoff -DCOFF -o coff/$i.obj $i.asm;
  13.   # next one here.
  14. done;
  15. echo ""
  16. echo Done.