# Makefile for AIO16 and AIO16B
# Author: Kenny Huang

KERNELDIR = /usr/src/linux

CFLAGS = -D__KERNEL__ -DMODULE -I$(KERNELDIR)/include -O -Wall

#all:	AIO16B.o

all:	AIO16.o AIO16B.o

tests:	./tests/driverTest

clean:	
	rm -f *.o *~ core

