X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/raggedstone/blobdiff_plain/71031cf562db8d4b19af3b6a0ab35de41ddf6753..40a64bf197a313eb87943d84a985e0d90086729e:/dhwk/Makefile diff --git a/dhwk/Makefile b/dhwk/Makefile index 4c431de..fed9553 100644 --- a/dhwk/Makefile +++ b/dhwk/Makefile @@ -1,24 +1,30 @@ PROJECT := dhwk -CLEANFILES := dhwk_fifo* fifo_generator_* param.opt +CLEANFILES := dhwk_fifo* fifo_generator_* param.opt icon.vhd icon.vho icon_flist.txt icon_readme.txt icon_xmdf.tcl ila.vhd ila.vho ila_flist.txt ila_readme.txt ila_xmdf.tcl vio.vhd vio.vho vio_flist.txt vio_readme.txt vio_xmdf.tcl dhwk_all: ip all -ip: icon.edn ila.edn dhwk_fifo.ngc +ip: icon.ngc ila.ngc vio.ngc dhwk_fifo.ngc -icon.edn: icon.arg - $(CHIPSCOPE)/bin/lin/generate.sh icon -f=$< +icon.ngc: icon.xco + coregen -b $< + -rmdir -p tmp/_cg -ila.edn: ila.arg - $(CHIPSCOPE)/bin/lin/generate.sh ila -f=$< +ila.ngc: ila.xco + coregen -b $< + -rmdir -p tmp/_cg + +vio.ngc: vio.xco + coregen -b $< + -rmdir -p tmp/_cg dhwk_fifo.ngc: fifo.xco coregen -b $< -rmdir -p tmp/_cg test: + grep -q dhwk /proc/modules || (cd driver; ./build; sudo insmod dhwk.ko; sudo mknod -m 666 /dev/dhwk c 42 0) dd if=/dev/urandom of=/tmp/in bs=1024 count=1024 - dd if=/dev/dhwk of=/tmp/out bs=1024 count=1024& + (dd if=/dev/dhwk of=/tmp/out bs=1024 count=1024; md5sum /tmp/in /tmp/out)& dd if=/tmp/in of=/dev/dhwk bs=1024 count=1024 - md5sum /tmp/in /tmp/out include ../common/Makefile.common