# *************************************************************
#	omdrast	- draw LBM ASTs
# *************************************************************
#***********************************
# (C) Copyright 1992-1993; dit/upm
#  Distributed under the conditions stated in the
#  TOPO General Public License (see file LICENSE)
#***********************************
# $Id: makefile,v 1.11 1995/01/11 12:06:12 lotos Exp $

TOOL=	omdrast
TRGT=	omdrast
SRCS=	$(TRGT).c
OBJS=	$(TRGT).o
HS=

INCDIRS= -I$(EPSINC) -I$(TOPOINC)
LIBDIRS= -L$(EPSLIB) -L$(TOPOLIB)
CFLAGS=	$(CF_DBX) $(INCDIRS)

$(TRGT):	$(TRGT).c
	$(CC) $(CFLAGS) $(LIBDIRS) -o $@ $(TRGT).c -lcast

install::	$(TRGT)
	cp $(TRGT) $(TOPOBIN)
	chmod a+x $(TOPOBIN)/$(TRGT)
	touch install

clean::
	-rm -f $(TRGT) $(OBJS)
	-rm -f core *~

#----------------------------------------------------------
