source: CIVL/examples/compare/Makefile@ 7c593bf

1.23 2.0 acw/focus-triggers main test-branch
Last change on this file since 7c593bf was 7c593bf, checked in by Manchun Zheng <zmanchun@…>, 10 years ago

cleaning up Makefiles

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@3096 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 530 bytes
Line 
1CIVL = civl
2COMPARE = $(CIVL) compare
3ADDER_PATH = ./adder/
4DIFFUSION_PATH = ./diffusion1d/
5MAX_PATH = ./max/
6
7all: sumN add diff1d maxN
8
9sumN: sum/Makefile
10 cd sum && make
11
12add: adder/Makefile
13 cd adder && make
14
15diff1d: diffusion1d/Makefile
16 cd diffusion1d && make
17
18maxN: $(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
22clean:
23 rm -f *~
24 rm -f -r CIVLREP
Note: See TracBrowser for help on using the repository browser.