1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# $Id: DEC_OSF_DEF,v 1.1 2002/11/14 20:00:06 lstein 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 = cc -O -Olimit 3000 -std1 -DACEDB4 -ieee_with_inexact
# rd 970131 - I am told that -O does the most optimisation possible
# there may be levels above -O2
LINKER = cc
LIBS = -lm
.c.o:
$(CC) $*.c
#################################################################
#################################################################
|