view example/word_count3/Makefile @ 794:088f64aad843

add Make for MacOSX (64bit mode) %make fifo64
author tkaito
date Tue, 04 May 2010 18:22:07 +0900
parents 7d9d209bdc82
children bcc81531a672
line wrap: on
line source

default: macosx

macosx: FORCE
	@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

cell: FORCE
	@echo "Make for CELL (Cell)"
	@$(MAKE) -f Makefile.cell

FORCE:

clean:
	@$(MAKE) -f Makefile.macosx clean
	@$(MAKE) -f Makefile.linux clean
	@$(MAKE) -f Makefile.cell clean