#
# Makefile for the kernel STREAMS device drivers.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2: This makefile departs from the usual and customary Linux
#         kernel makefile.  The streams subsystem has special requirements.
#
# Note 3! This file is entered from a make in a superior directory
#         it is NOT intended to be run from the command line.


all:	streams.a

FORCE:

streams.a: FORCE
	set -e; make -C ./head/linux LIBDIR=../..;  \
		make -C ./drivers/str/linux LIBDIR=../../.. 

clean: FORCE
	rm -f streams.a
	set -e; make -C ./head/linux clean; \
		make -C ./drivers/str/linux clean \
		make -c ./util/linux clean

tags:	files
	ctags `cat files`

