PROJECT := dhwk
+CLEANFILES := dhwk_fifo* fifo_generator_* param.opt
dhwk_all: ip all
-ip: icon.edn ila.edn fifo_generator_v3_2.ngc
+ip: icon.edn ila.edn dhwk_fifo.ngc
icon.edn: icon.arg
$(CHIPSCOPE)/bin/lin/generate.sh icon -f=$<
ila.edn: ila.arg
$(CHIPSCOPE)/bin/lin/generate.sh ila -f=$<
-fifo_generator_v3_2.ngc: fifo_generator_v3_2.xco
+dhwk_fifo.ngc: fifo.xco
coregen -b $<
+ -rmdir -p tmp/_cg
+
+test:
+ grep -q dhwk /proc/modules || (cd driver; ./build; sudo insmod dhwk.ko)
+ dd if=/dev/urandom of=/tmp/in bs=1024 count=1024
+ dd if=/dev/dhwk of=/tmp/out bs=1024 count=1024&
+ dd if=/tmp/in of=/dev/dhwk bs=1024 count=1024
+ sleep 1
+ md5sum /tmp/in /tmp/out
include ../common/Makefile.common