annotate example/many_task/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 273de551f726
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
1 default: macosx
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
2
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
3 macosx: FORCE
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
4 @echo "Make for Mac OS X"
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
5 @$(MAKE) -f Makefile.macosx
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
6
794
4f907657132a add Make for MacOSX (64bit mode) %make fifo64
tkaito
parents: 256
diff changeset
7 fifo64: FORCE
4f907657132a add Make for MacOSX (64bit mode) %make fifo64
tkaito
parents: 256
diff changeset
8 @echo "Make for Mac OS X 64bit mode"
4f907657132a add Make for MacOSX (64bit mode) %make fifo64
tkaito
parents: 256
diff changeset
9 @$(MAKE) -f Makefile.fifo ABIBIT=64
4f907657132a add Make for MacOSX (64bit mode) %make fifo64
tkaito
parents: 256
diff changeset
10
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
11 linux: FORCE
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
12 @echo "Make for Linux"
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
13 @$(MAKE) -f Makefile.linux
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
14
256
2c775d229cc6 fix examples
tkaito@localhost.localdomain
parents: 109
diff changeset
15 cell: FORCE
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
16 @echo "Make for PS3 (Cell)"
256
2c775d229cc6 fix examples
tkaito@localhost.localdomain
parents: 109
diff changeset
17 @$(MAKE) -f Makefile.cell
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
18
1515
b3644b73d2cf add flip flag test
Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
parents: 794
diff changeset
19 gpu: FORCE
b3644b73d2cf add flip flag test
Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
parents: 794
diff changeset
20 @echo "Make for OpenCL"
b3644b73d2cf add flip flag test
Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
parents: 794
diff changeset
21 @$(MAKE) -f Makefile.gpu
b3644b73d2cf add flip flag test
Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
parents: 794
diff changeset
22
1960
273de551f726 use multiple command_queue
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1887
diff changeset
23 cuda: FORCE
273de551f726 use multiple command_queue
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1887
diff changeset
24 @echo "Make for Cuda"
273de551f726 use multiple command_queue
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1887
diff changeset
25 @$(MAKE) -f Makefile.cuda
273de551f726 use multiple command_queue
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1887
diff changeset
26
1849
0296fa2dfe6d add test
Shinji KONO
parents: 1516
diff changeset
27 gpu-test: FORCE
0296fa2dfe6d add test
Shinji KONO
parents: 1516
diff changeset
28 @echo "Make for OpenCL"
0296fa2dfe6d add test
Shinji KONO
parents: 1516
diff changeset
29 @$(MAKE) -f Makefile.gpu test
0296fa2dfe6d add test
Shinji KONO
parents: 1516
diff changeset
30
1887
94a824cde2e4 remove some old code
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 1849
diff changeset
31 test:
94a824cde2e4 remove some old code
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 1849
diff changeset
32 ./sort
94a824cde2e4 remove some old code
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 1849
diff changeset
33
109
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
34 FORCE:
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
35
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
36 clean:
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
37 @$(MAKE) -f Makefile.macosx clean
028ffc9c0375 Cerium cvs version
gongo@gendarme.local
parents:
diff changeset
38 @$(MAKE) -f Makefile.linux clean
1849
0296fa2dfe6d add test
Shinji KONO
parents: 1516
diff changeset
39 @$(MAKE) -f Makefile.cell clean
1960
273de551f726 use multiple command_queue
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1887
diff changeset
40 @$(MAKE) -f Makefile.gpu clean
273de551f726 use multiple command_queue
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents: 1887
diff changeset
41 @$(MAKE) -f Makefile.cuda clean