##############################################################################
#                                                                            #
# 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 2.x                                           #
##############################################################################
SYSTEM_SUFFIX= _sol2


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

TAR= 		$(shell which tar)
#TAR=		/bin/tar

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=	cproto

CI=     $(shell which ci)
#CI=	/usr/local/bin/ci
#CI=	/opt/free/bin/ci

#####################
#     Debug Mode    #
#####################
#DBG = 1


#####################
# Compiling options #
#####################
ifndef  DBG
   ifndef  PROF
      # fast mode (default)
      OPTION_SUFFIX = 
      CFLAGS= -DSVSV -O0
   else
      # profile mode
      OPTION_SUFFIX = _prof
      CFLAGS=  -pg -DSVSV
      LPFLAG= -pg
   endif
else
   #debug mode
   OPTION_SUFFIX = _dbg
   CFLAGS=  -Wall -g -D_DEBUG_  -DSVSV

endif
