##############################################################################
#                                                                            #
# Copyright (C) 1996 ACTS-MoMuSys All Rights Reserved.                       #
#                                                                            #
# See COPYRIGHT file enclosed with this distribution.                        #
#                                                                            #
##############################################################################

##############################################################################
#                                                                            #
#  CREATED BY :  Bruno LORET -- FRANCE TELECOM / CNET --  22-Feb-96          # 
#                                                                            #
##############################################################################



##############################################################################
#                  SGI                                                       #
##############################################################################
SYSTEM_SUFFIX= _sgi

##############################################################################
# Adapt this to your own system                                              #
##############################################################################
SHELL= /sbin/sh
#MAKE= /sgi/gnu/Global/bin/make
MAKE= gmake


#
# CHECK IF YOU LOCATION OF PERL IN generate_doc.pl (1st line) suits you
#

##############################################################################
# It's probably better to put the exact locations by hand (quicker and safer)#
##############################################################################
CC=		$(shell which gcc)
#CC=		/sgi/gnu/Global/bin/gcc

TAR= 		$(shell which tar)
#TAR=		/sgi/gnu/Global/bin/gtar

COMPRESS= 	$(shell which gzip)
#COMPRESS=	/sgi/gnu/Global/bin/gzip

# If you are not using SYSV Unix, uncomment the following line
#RANLIB= /usr/bin/ranlib

CPROTO_BIN=  	$(shell which cproto)
#CPROTO_BIN=	cproto

#CI=	$(shell which ci)
CI=	/sgi/gnu/Global/bin/ci

#####################
# Compiling options #
#####################
ifndef  DBG
   ifndef  PROF
# fast mode (default)
	OPTION_SUFFIX = 
        CFLAGS=  -O -g
   else
# profile mode
	OPTION_SUFFIX = _prof
	CFLAGS=  -p
   endif
else
#debug mode
   OPTION_SUFFIX = _dbg
   CFLAGS=  -Wall -g -D_DEBUG_ -D_DEBUG_BENZ_
endif
