# $Id: ALPHA_4_DEF,v 1.8 2000/04/11 12:50:51 srk Exp $

#################################################################
############### acedb: R.Durbin and J.Thierry-Mieg ##############
########### wmake/DEC_ALPHA_DEF    March-18-1993       ##########
#################################################################

#################################################################
########## Machine dependant compiler modification ##############
####### for the DEC-Alpha 3000 model 500 running Unix ###########
#################################################################
########### This file is included by wmake/truemake #############
######  Edit this file to adapt the ACeDB to a new machine ######
#####   following the explanations given in wmake/truemake  #####
#################################################################

NAME = ALPHA

# Compiler used to build 3rd party libraries 
LIBCC = cc

# I'm trying "level3" messages, you can go to "level6" but this is quite annoying....
#
#COMPILER = cc -g1 -std -msg_enable level3 -ieee_with_inexact -DACEDB4 `../w3rdparty/include-config -I/usr/local/include`
COMPILER = cc -g -std -msg_enable level3 -ieee_with_inexact -DACEDB4 `../w3rdparty/include-config -I/usr/local/include` 

#LINKER = cc -g1 -oldstyle_liblookup
LINKER = cc -g -oldstyle_liblookup

# On DEC binaries complied with gcc + ev6 specific options crawl on pre
# ev6 machines. Add opion to emulate ev5, specifying the ev6 options only
# gains about 10% anyway. This is probably only used for the Image
# external modules since the default compiler/linker for DEC is cc
#CCCFLAGS = -O2 -g3 -Wall -mcpu=ev5

# On DEC the library does not need to be ranlib'd
RANLIB_NEEDED = false

# need /usr/local/lib for GNU software, e.g. readline package.
LIBS = `../w3rdparty/libs-config -L/usr/local/lib` -lreadline -lm -no_archive -lcurses  -so_archive



.c.o:
	$(CC)  $*.c

#################################################################
#################################################################