home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ldapsdk.zip / build.cmd next >
OS/2 REXX Batch file  |  2001-11-16  |  426b  |  13 lines

  1. /**/
  2. parse arg mode
  3. select
  4.    when mode = 'clean' then p = '-c clean'
  5.    when mode = '' then p = '-c DEBUGLEVEL=2 USETCPIP40=1 staticlibs'
  6.    when mode = 'ibmcxxo' then p = '-c DEBUGLEVEL=2 USEIBMCXXO=1 USETCPIP40=1 staticlibs'
  7.    when mode = 'tcpip40' then p = '-c DEBUGLEVEL=2 USETCPIP40=1 dynamiclibs'
  8.    when mode = 'tcpip41' then p = '-c DEBUGLEVEL=2 dynamiclibs'
  9. otherwise
  10. exit 8
  11. end  /* select */
  12. 'nmake' p
  13.