changeset 794:088f64aad843

add Make for MacOSX (64bit mode) %make fifo64
author tkaito
date Tue, 04 May 2010 18:22:07 +0900
parents c260205d3185
children bc050932ca8b
files Renderer/Engine/Makefile Renderer/Test/Makefile TaskManager/Makefile TaskManager/Makefile.def example/Bulk/Makefile example/HelloWorld/Makefile example/MemList/Makefile example/Simple/Makefile example/basic/Makefile example/dependency_task/Makefile example/get_segment/Makefile example/hello_array/Makefile example/mainMem/Makefile example/many_task/Makefile example/post_function/Makefile example/renew_task/Makefile example/share_task/Makefile example/task_queue/Makefile example/word_count/Makefile example/word_count3/Makefile example/word_count_test/Makefile
diffstat 21 files changed, 76 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Renderer/Engine/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/Renderer/Engine/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,9 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@$(MAKE) -f Makefile.macosx ABIBIT=64
+
 cell: FORCE
 	@echo "Make for PS3 (Cell)"
 	@$(MAKE) -f Makefile.cell
--- a/Renderer/Test/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/Renderer/Test/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -1,5 +1,7 @@
 all:  
 	make -f Makefile.macosx $*
+fifo64:  
+	make -f Makefile.macosx ABIBIT=64 $*
 linux:  
 	make -f Makefile.linux $*
 cell:
--- a/TaskManager/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/TaskManager/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -9,6 +9,9 @@
 fifo: FORCE
 	@$(MAKE) -f Makefile.fifo
 
+fifo64: FORCE
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 depend: FORCE
 	@$(MAKE) -f Makefile.fifo depend
 
--- a/TaskManager/Makefile.def	Mon May 03 05:09:58 2010 +0900
+++ b/TaskManager/Makefile.def	Tue May 04 18:22:07 2010 +0900
@@ -29,7 +29,6 @@
 
 ABIBIT = 32
 
-
 OPT = #-O9 
 OPT =  -g
 
--- a/example/Bulk/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/Bulk/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/HelloWorld/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/HelloWorld/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/MemList/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/MemList/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/Simple/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/Simple/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/basic/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/basic/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/dependency_task/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/dependency_task/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/get_segment/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/get_segment/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/hello_array/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/hello_array/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/mainMem/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/mainMem/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/many_task/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/many_task/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/post_function/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/post_function/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/renew_task/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/renew_task/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/share_task/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/share_task/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/task_queue/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/task_queue/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/word_count/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/word_count/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/word_count3/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/word_count3/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux
--- a/example/word_count_test/Makefile	Mon May 03 05:09:58 2010 +0900
+++ b/example/word_count_test/Makefile	Tue May 04 18:22:07 2010 +0900
@@ -4,6 +4,10 @@
 	@echo "Make for Mac OS X"
 	@$(MAKE) -f Makefile.macosx
 
+fifo64: FORCE
+	@echo "Make for Mac OS X 64bit mode"
+	@$(MAKE) -f Makefile.fifo ABIBIT=64
+
 linux: FORCE
 	@echo "Make for Linux"
 	@$(MAKE) -f Makefile.linux