This is a correct example of DEF as
included in the 3.3 tar file:
#################################################################
############### 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 -g -std1 -DACEDB3
LINKER = cc -g
LIBS = -lm
..c.o:
$(CC) -c $*.c
#################################################################
#################################################################
notice the line -DACEDB3
a similar define is needed for SUN etc
this beeing done you can make:
make xabi
make tace
make aceserver
%%%%%%%%%%%%%%%%%
alternativelly use
NAME = ALPHA
COMPILER = cc -O2 -DACEDB2
LINKER = cc
LIBS = -lm
..c.o:
$(CC) -c $*.c
%%%%%%%
then you can
make xace
make tace
most probably, but i did not check aceserver/client