comparison example/multiply/Makefile @ 1556:f71632373220 draft

add multiply ppe example.
author Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
date Tue, 05 Mar 2013 06:52:55 +0900
parents
children 4eefec26e3e2
comparison
equal deleted inserted replaced
1555:096412ad80fb 1556:f71632373220
1 default: macosx
2
3 macosx: FORCE
4 @echo "Make for Mac OS X"
5 @$(MAKE) -f Makefile.macosx
6
7 fifo64: FORCE
8 @echo "Make for Mac OS X 64bit mode"
9 @$(MAKE) -f Makefile.macosx ABIBIT=64
10
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
19 gpu: FORCE
20 @echo "Make for GPU (open cl)"
21 @$(MAKE) -f Makefile.gpu
22
23 FORCE:
24
25 clean:
26 @$(MAKE) -f Makefile.macosx clean
27 @$(MAKE) -f Makefile.linux clean
28 @$(MAKE) -f Makefile.gpu clean