source:
CIVL/examples/compare/Makefile@
7c593bf
| Last change on this file since 7c593bf was 7c593bf, checked in by , 10 years ago | |
|---|---|
|
|
| File size: 530 bytes | |
| Rev | Line | |
|---|---|---|
| [f06298a] | 1 | CIVL = civl |
| 2 | COMPARE = $(CIVL) compare | |
| [fbb0793f] | 3 | ADDER_PATH = ./adder/ |
| [7e8e35c] | 4 | DIFFUSION_PATH = ./diffusion1d/ |
| 5 | MAX_PATH = ./max/ | |
| [f06298a] | 6 | |
| [7c593bf] | 7 | all: sumN add diff1d maxN |
| [f06298a] | 8 | |
| [7c593bf] | 9 | sumN: sum/Makefile |
| 10 | cd sum && make | |
| [f06298a] | 11 | |
| [7c593bf] | 12 | add: adder/Makefile |
| 13 | cd adder && make | |
| [fbb0793f] | 14 | |
| [7c593bf] | 15 | diff1d: diffusion1d/Makefile |
| 16 | cd diffusion1d && make | |
| [7e8e35c] | 17 | |
| [7c593bf] | 18 | maxN: $(MAX_PATH)max.cvl $(MAX_PATH)max_seq.cvl $(MAX_PATH)max_par.cvl |
| [7e8e35c] | 19 | $(COMPARE) -inputB=4 -spec $(MAX_PATH)max.cvl $(MAX_PATH)max_seq.cvl \ |
| 20 | -impl -inputNPROCS=2 -inputBLOCK_SIZE=2 $(MAX_PATH)max.cvl $(MAX_PATH)max_par.cvl | |
| [7c593bf] | 21 | |
| [f06298a] | 22 | clean: |
| 23 | rm -f *~ | |
| [7e8e35c] | 24 | rm -f -r CIVLREP |
Note:
See TracBrowser
for help on using the repository browser.
