picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

mkAsm (201B)


      1 #!/bin/sh
      2 # 08jun11abu
      3 
      4 if test -x /usr/bin/picolisp
      5 then
      6    /usr/bin/pil mkAsm.l "$@"
      7 elif test -x ../bin/picolisp
      8 then
      9    ../pil mkAsm.l "$@"
     10 else
     11    ../ersatz/pil mkAsm.l "$@"
     12 fi
     13 
     14 # vi:et:ts=3:sw=3