#!/bin/sh
#
#Sniffit argument generating file -- Brecht Claerhout

if uname -a|grep -i linux >/dev/null ; then
 echo '-DLINUX -USUNOS -UIRIX -I/usr/include/ncurses -L/usr/include/ncurses -lncurses' 
else
 if uname -a|grep -i sunos >/dev/null; then
  echo '-ULINUX -DSUNOS -UIRIX -lsocket -lnsl'
 else 
  if uname -a|grep -i irix >/dev/null; then
   echo '-ULINUX -USUNOS -DIRIX'
  else
   echo 'NOT_AUTODETECTED'
  fi
 fi
fi

