#######################################################################
##
## HyperBase was designed and implemented by:
##
##	Uffe Kock Wiil 		(kock@iesd.auc.dk)
##	Claus Bo Nielsen 	(cbn@cci.dk)
##	Carsten Ruseng Jakobsen (ruseng@sun.com)
##	Finn Soelvsten
##	Per Magnus Petersen
##	Poul Larsen
##	Hans Mejdahl Jeppesen
##
## at The University of Aalborg in Denmark autumn 1989, and is provided
## for unrestricted use provided that this legend is included on all
## tape media and as a part of the software program in whole or part.
## Users may copy or modify HyperBase without charge, but are not
## authorized to license or distribute it to anyone else except as part
## of a product or program developed by the user.
##  
## HyperBase IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING
## THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A
## PARTICULAR PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR
## TRADE PRACTICE.
## 
## HyperBase is provided with no support and without any obligation on
## the part of the authors, to assist in its use, correction,
## modification or enhancement.
##
## THE AUTHORS SHALL HAVE NO LIABILITY WITH RESPECT TO THE INFRINGEMENT
## OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY HyperBase OR ANY PART
## THEREOF.
##
## In no event will the authors and/or The University of Aalborg be
## liable for any lost revenue or profits or other special, indirect and
## consequential damages, even if the authors and/or The University of
## Aalborg has been advised of the possibility of such damages.
##
## Please address all correspondence to:
##
## Uffe Kock Wiil
## Department of Computer Science,
## The University of Aalborg,      Email:  kock@iesd.auc.dk
## Fredrik Bajers Vej 7E,          Phone:  + 45 98 15 42 11 (Ext 5051)
## DK-9220 Aalborg, Denmark.       Fax:    + 45 98 15 81 29
##
#######################################################################

CFLAGS= -g -O
#-DSUN3
#-O -finline-functions
LDFLAGS= 
CC=g++

.SUFFIXES: .o .cc .hh

.cc.o:
	$(CC) $(CFLAGS) -c ${<}


#BLOCK3=../../event_blok_3/

all: block3.o block4a.o block4a_main.o main.o

#BLOCK3OBJ=$(BLOCK3)baltree.o $(BLOCK3)Event.o $(BLOCK3)Lock.o \
#          $(BLOCK3)MainEventLock.o $(BLOCK3)Fake2.o

#server: 	$(OBJS) $(BLOCK3OBJ)
#		$(CC) $(LDFLAGS) -o server $(OBJS) $(BLOCK3OBJ)






#print: 
#	lpr -p block4a.hh block4a.cc block4a_main.cc main.cc

#clr:
#	rm -f $(OBJ) server


# And the depend stuff

block3.o: block3.cc block3.hh ../../config/hb_config.hh
block4a.o: block4a.hh block4a.cc ../ncb_config.h ../../config/hb_config.hh
block4a_main.o: block4a.hh block4a.cc ../ncb_config.h ../../config/hb_config.hh
main.o: main.cc ../../config/hb_config.hh











