head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2007.02.07.08.22.49;	author jcarr;	state Exp;
branches;
next	;
commitid	440d45c98c3f4567;


desc
@@


1.1
log
@add the linux device driver and userspace app
@
text
@ifneq ($(KERNELRELEASE),)
include Kbuild
else
# Normal Makefile
KERNELDIR := /lib/modules/`uname -r`/build

modules::
	$(MAKE) -C $(KERNELDIR) M=`pwd` $@@

clean:
	$(MAKE) -C $(KERNELDIR) M=`pwd` $@@
	-rm -f Module.symvers

endif

install:
	-rmmod mod_pci_7seg
	sleep 1
	insmod ./mod_pci_7seg.ko
	-mknod /dev/fpga c 100 0
@
