]>
Commit | Line | Data |
---|---|---|
62946980 | 1 | PROJECT := dhwk |
40a64bf1 | 2 | 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 |
377c0242 | 3 | |
12bc1626 | 4 | dhwk_all: ip all |
5 | ||
40a64bf1 | 6 | ip: icon.ngc ila.ngc vio.ngc dhwk_fifo.ngc |
12bc1626 | 7 | |
40a64bf1 MG |
8 | icon.ngc: icon.xco |
9 | coregen -b $< | |
10 | -rmdir -p tmp/_cg | |
12bc1626 | 11 | |
40a64bf1 MG |
12 | ila.ngc: ila.xco |
13 | coregen -b $< | |
14 | -rmdir -p tmp/_cg | |
12bc1626 | 15 | |
40a64bf1 MG |
16 | vio.ngc: vio.xco |
17 | coregen -b $< | |
18 | -rmdir -p tmp/_cg | |
cf1ee28a | 19 | |
078adaa6 | 20 | dhwk_fifo.ngc: fifo.xco |
12bc1626 | 21 | coregen -b $< |
48eafd87 | 22 | -rmdir -p tmp/_cg |
12bc1626 | 23 | |
71031cf5 | 24 | test: |
c1756d1c | 25 | grep -q dhwk /proc/modules || (cd driver; ./build; sudo insmod dhwk.ko; sudo mknod -m 666 /dev/dhwk c 42 0) |
71031cf5 | 26 | dd if=/dev/urandom of=/tmp/in bs=1024 count=1024 |
da252321 | 27 | (dd if=/dev/dhwk of=/tmp/out bs=1024 count=1024; md5sum /tmp/in /tmp/out)& |
71031cf5 | 28 | dd if=/tmp/in of=/dev/dhwk bs=1024 count=1024 |
71031cf5 | 29 | |
377c0242 | 30 | include ../common/Makefile.common |