# Source Makefile for the Leostick Serial FreeBSD kernel driver
#
# Author:  Maurice Castro
#

#.PATH: ${.CURDIR} /sys/pci

KMOD=	uleo
SRCS=	device_if.h bus_if.h pci_if.h vnode_if.h opt_uticom.h opt_usb.h usbdevs.h
SRCS+=	uleo.c
CFLAGS+ = -I${WRKSRC}

my-clean:
	for xx in * ; do \
	  if test ""$$xx"" = ""uleo.c"" ; then echo "skipping uleo.c" ; \
	  elif test ""$$xx"" = ""Makefile"" ; then echo "skipping Makefile"; \
	  else rm $$xx ; fi \
	done

.include <bsd.kmod.mk>

