#
#  Makefile for LiS drivers.
#
#  This one builds drivers for user level.
#
LIS_HOME = ../../..
include $(LIS_HOME)/config.mk

-include $(LIS_HOME)/drvrconf.mk

OPT = -DUSER -D__KERNEL__
DRVRS = loop.o relay.o clone.o minimux.o printk.o nullstrm.o timod.o sad.o
CC = cc -DLiS $(OPT) $(XOPTS)

# Do we want debugging?
ifeq ($(DBG_OPT),notused)
ifeq ($(DBG_OPT),y)
OPT += -g
endif
endif


include $(DRVRDIR)/mk.bdy


#
# No special rules
#

clean: common-clean

realclean: common-realclean

dep: common-dep
