#################################################################### 
##
## EHTS was designed and implemented by:
##
##	Uffe Kock Wiil 		(kock@iesd.auc.dk)
##	Claus Bo Nielsen 	(cbn@cci.dk)
##
## at The University of Aalborg in Denmark spring 1990, 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 EHTS 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.
##   
## EHTS 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.
## 
## EHTS 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 EHTS 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
##
####################################################################

CC=cc
CFLAGS= -I/home/local/sys/X11/include/XView1 \
	-I/home/local/sys/X11/include -O
LDFLAGS= -L/home/local/sys/X11/lib/XView1 -lxview \
	-L/home/local/sys/X11/lib -lX11 -lm 

OBJS= browser.o panel.o canvas.o hb.o editor.o event.o ehts.o basic.o \
	block4b.o 
SRC= browser.h browser.c panel.c canvas.c hb.c editor.c event.c basic.c \
	ehts.c block4b.c

browser: $(OBJS)
	$(CC) -o browser $(OBJS) $(LDFLAGS)

clean:
	rm -f $(OBJS)

print:
	lpr -p $(SRC)

browser.o: browser.h
panel.o:   browser.h
canvas.o:  browser.h
hb.o:      browser.h hb_config.h
block4b.o: hb_config.h
editor.o:  browser.h 
event.o:   browser.h
ehts.o:    browser.h
basic.o:   browser.h
