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



##############################################################################
#                  LINUX                                                     #
##############################################################################
SYSTEM_SUFFIX= _linux

##############################################################################
# Adapt this to your own system                                              #
##############################################################################
SHELL= /bin/sh
MAKE= /data1/loret/GNU/make-3.74/make


#
# 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=	/usr/local/bin/gcc

TAR= 		$(shell which tar)
#TAR=		/usr/sbin/tar

COMPRESS= 	$(shell which gzip)
#COMPRESS=	/opt/free/bin/gzip

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

CPROTO_BIN=  	$(shell which cproto)
#CPROTO_BIN=	/usr/local/Module_server/Modules/libmgr/cproto

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


##############################################################################
# To use on Linux : LINUX_HOST is the hostname of your LINUX PC              #
##############################################################################
LINUX_HOST = kundji

#####################
# 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=  -w -g -D_DEBUG_
endif

