
#
# Copyright (c) 1996,1997, by Sun Microsystems, Inc.
# All Rights Reserved
#
#ident	"@(#)Makefile	1.7	97/04/04 SMI"
#

TOP= ..

include $(TOP)/Makefile.master

.KEEP_STATE:

all: dma

dma:	FORCE
	@if [ -d $(INST) ] ; \
		then ( cd $(INST); make ) ; \
	else \
		echo "dma driver not available for $(INST) architecture" ; \
	fi
	
ddict:	FORCE
	@if [ -d $(INST) ] ; \
		then ( cd $(INST); make ddict ) ; \
	else \
		echo "dma driver not available for $(INST) architecture" ; \
	fi

clean:	FORCE
	@if [ -d $(INST) ] ; \
		then ( cd $(INST); make clean ) ; \
	fi
	
#include ../Makefile.driver

CFLAGS += -D$(INST) $(ENVCPPFLAGS1) $(ENVCPPFLAGS2)

FORCE:
