1.23
2.0
acw/focus-triggers
main
test-branch
| Line | |
|---|
| 1 | CIVL = civl
|
|---|
| 2 | COMPARE = $(CIVL) compare
|
|---|
| 3 | ADDER_PATH = ./adder/
|
|---|
| 4 | DIFFUSION_PATH = ./diffusion1d/
|
|---|
| 5 | MAX_PATH = ./max/
|
|---|
| 6 |
|
|---|
| 7 | all: sumN add diff1d maxN
|
|---|
| 8 |
|
|---|
| 9 | sumN: sum/Makefile
|
|---|
| 10 | cd sum && make
|
|---|
| 11 |
|
|---|
| 12 | add: adder/Makefile
|
|---|
| 13 | cd adder && make
|
|---|
| 14 |
|
|---|
| 15 | diff1d: diffusion1d/Makefile
|
|---|
| 16 | cd diffusion1d && make
|
|---|
| 17 |
|
|---|
| 18 | maxN: $(MAX_PATH)max.cvl $(MAX_PATH)max_seq.cvl $(MAX_PATH)max_par.cvl
|
|---|
| 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
|
|---|
| 21 |
|
|---|
| 22 | clean:
|
|---|
| 23 | rm -f *~
|
|---|
| 24 | rm -f -r CIVLREP
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.