comparison example/Bulk/Makefile @ 652:dbe137505f2e

bulk task list start.
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 23 Nov 2009 12:01:45 +0900
parents
children 088f64aad843
comparison
equal deleted inserted replaced
651:c13bbb7d70b3 652:dbe137505f2e
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 PS3 (Cell)"
13 @$(MAKE) -f Makefile.cell
14
15 FORCE:
16
17 clean:
18 @$(MAKE) -f Makefile.macosx clean
19 @$(MAKE) -f Makefile.linux clean
20 @$(MAKE) -f Makefile.cell clean