mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
15 lines
205 B
Bash
15 lines
205 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
tag="${SYSNAME:-`uname -m`}-${OBJTYPE:-`uname`}-`uname -r`-${CC9:-cc}"
|
||
|
case "$tag" in
|
||
|
*-Linux-2.6.*)
|
||
|
echo pthread.o
|
||
|
;;
|
||
|
*-FreeBSD-5.*)
|
||
|
echo pthread.o
|
||
|
;;
|
||
|
*)
|
||
|
echo `uname`.o `uname`asm.o
|
||
|
esac
|
||
|
|