File: mkAsm

package info (click to toggle)
picolisp 3.1.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,100 kB
  • sloc: ansic: 14,205; lisp: 795; makefile: 290; sh: 13
file content (14 lines) | stat: -rwxr-xr-x 201 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# 08jun11abu

if test -x /usr/bin/picolisp
then
   /usr/bin/pil mkAsm.l "$@"
elif test -x ../bin/picolisp
then
   ../pil mkAsm.l "$@"
else
   ../ersatz/pil mkAsm.l "$@"
fi

# vi:et:ts=3:sw=3