File: link.sh

package info (click to toggle)
clisp 1997-12-06-1
  • links: PTS
  • area: main
  • in suites: hamm, slink
  • size: 20,744 kB
  • ctags: 8,390
  • sloc: ansic: 37,808; lisp: 37,255; asm: 6,393; sh: 3,077; objc: 2,481; makefile: 1,174; sed: 96; perl: 14
file content (17 lines) | stat: -rw-r--r-- 508 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
file_list=''
wfile_list=''
mod_list=''
if test -f linux.c; then
  file_list="$file_list"' linux.o'
  wfile_list="$wfile_list"' wlinux.o'
  mod_list="$mod_list"' linux'
fi
make `if test -n "$with_wide"; then echo clisp-module-wide; else echo clisp-module; fi` CC="${CC}" CFLAGS="${CFLAGS}" INCLUDES="$absolute_linkkitdir"
NEW_FILES="$file_list"
NEW_LIBS="$file_list -lm"
NEW_WLIBS="$wfile_list -lm"
if test -n "$with_wide"; then
  NEW_FILES=$NEW_FILES" $wfile_list"
fi
NEW_MODULES="$mod_list"
TO_LOAD='linux'