##############################################################################
#                                                                            #
# 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          # 
#                                                                            #
##############################################################################



##############################################################################
#                  SUN SOLARIS 1.x                                           #
##############################################################################
SYSTEM_SUFFIX= _sol1


##############################################################################
# Adapt this to your own system                                              #
##############################################################################
SHELL= /bin/sh 
MAKE=  /util/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=	gcc 

#TAR= 		$(shell which tar)
TAR=		gtar

#COMPRESS= 	$(shell which gzip)
COMPRESS=	gzip

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

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

#CI=	$(shell which ci)
CI=	ci

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


