Mercurial > hg > Game > Cerium
annotate example/Bulk/Makefile @ 2048:6796d85f3d6b draft
remove error
author | Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 28 Jan 2016 00:05:49 +0900 |
parents | 7dc90c83a787 |
children |
rev | line source |
---|---|
659 | 1 default: macosx |
2 | |
3 macosx: FORCE | |
4 @echo "Make for Mac OS X" | |
5 @$(MAKE) -f Makefile.macosx | |
6 | |
794 | 7 fifo64: FORCE |
8 @echo "Make for Mac OS X 64bit mode" | |
869 | 9 @$(MAKE) -f Makefile.macosx ABIBIT=64 |
794 | 10 |
659 | 11 linux: FORCE |
12 @echo "Make for Linux" | |
13 @$(MAKE) -f Makefile.linux | |
14 | |
15 cell: FORCE | |
16 @echo "Make for PS3 (Cell)" | |
17 @$(MAKE) -f Makefile.cell | |
18 | |
2000 | 19 gpu: FORCE |
20 @echo "Make for GPU" | |
21 @$(MAKE) -f Makefile.gpu | |
22 | |
23 cuda: FORCE | |
24 @echo "Make for CUDA" | |
25 @$(MAKE) -f Makefile.cuda | |
26 | |
659 | 27 FORCE: |
28 | |
2000 | 29 test: |
2003
7dc90c83a787
change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
2002
diff
changeset
|
30 ./twice |
2002 | 31 ./twice -task_array_num 10 |
2000 | 32 |
2003
7dc90c83a787
change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
2002
diff
changeset
|
33 parallel-test: macosx |
7dc90c83a787
change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
2002
diff
changeset
|
34 @$(MAKE) -f Makefile.macosx test |
7dc90c83a787
change set_last(t to next). run test at compilation time
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
2002
diff
changeset
|
35 |
659 | 36 clean: |
37 @$(MAKE) -f Makefile.macosx clean | |
38 @$(MAKE) -f Makefile.linux clean | |
2000 | 39 @$(MAKE) -f Makefile.cell clean |