Mercurial > hg > Game > Cerium
annotate example/bm_search/Makefile @ 2054:2e7a6f40672f draft
add param(4) in FileMapReduce.cc
author | masa |
---|---|
date | Fri, 29 Jan 2016 15:56:28 +0900 |
parents | a8f4227d6a21 |
children | f786ffb2a198 |
rev | line source |
---|---|
1598 | 1 default: macosx |
2 | |
3 macosx: FORCE | |
4 @echo "Make for Mac OS X" | |
5 @$(MAKE) -f Makefile.macosx | |
6 | |
7 linux: FORCE | |
8 @echo "Make for Linux" | |
9 @$(MAKE) -f Makefile.linux | |
10 | |
11 cell: FORCE | |
12 @echo "Make for CELL (Cell)" | |
13 @$(MAKE) -f Makefile.cell | |
14 | |
15 gpu: FORCE | |
16 @echo "Make for OpenCL" | |
17 @$(MAKE) -f Makefile.gpu | |
18 | |
1944 | 19 test: |
1956
b52fe4cceff3
rename divide read to block read
Masataka Kohagura <e085726@ie.u-ryukyu.ac.jp>
parents:
1944
diff
changeset
|
20 ./regex -file c.txt -cpu 4 -sw doing -br |
1944 | 21 |
1598 | 22 FORCE: |
23 | |
24 clean: | |
25 @$(MAKE) -f Makefile.macosx clean | |
26 @$(MAKE) -f Makefile.linux clean | |
1944 | 27 @$(MAKE) -f Makefile.cell clean |