added Makefiles for IBM Cell SDK 2.1, thanks to Bruce D'Amora, IBM Watson

This commit is contained in:
ejcoumans
2007-08-13 04:18:25 +00:00
parent 7834825a43
commit e7304e6cec
6 changed files with 272 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
#### Source code Dirs
VPATH = ../
ROOT = ../../..
#### Library
LIBRARY_ppu = bulletmath.a
#### Compiler flags
CPPFLAGS = \
-I$(ROOT)/src \
-I$(SDKINC)
#### Optimization level flags
#CC_OPT_LEVEL = $(CC_OPT_LEVEL_DEBUG)
CC_OPT_LEVEL = -O3
##### Objects to be archived in lib
OBJS = \
btAlignedAllocator.o \
btGeometryUtil.o \
btQuickprof.o
#### Install directories
INSTALL_DIR = $(ROOT)/lib/ibmsdk
INSTALL_FILES = $(LIBRARY_ppu)
include $(TOP)/make.footer