annotate example/MemList/Makefile @ 639:70c5c2d2eb24

fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 19 Nov 2009 18:45:24 +0900
parents 87462f8d3761
children 088f64aad843
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
364
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
1 default: macosx
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
2
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
3 macosx: FORCE
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
4 @echo "Make for Mac OS X"
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
5 @$(MAKE) -f Makefile.macosx
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
6
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
7 linux: FORCE
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
8 @echo "Make for Linux"
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
9 @$(MAKE) -f Makefile.linux
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
10
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
11 cell: FORCE
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
12 @echo "Make for PS3 (Cell)"
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
13 @$(MAKE) -f Makefile.cell
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
14
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
15 FORCE:
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
16
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
17 clean:
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
18 @$(MAKE) -f Makefile.macosx clean
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
19 @$(MAKE) -f Makefile.linux clean
87462f8d3761 uint32 to memaddr(uint64)
tkaito@localhost.localdomain
parents:
diff changeset
20 @$(MAKE) -f Makefile.cell clean