/ani/mrses

To get this branch, use:
bzr branch http://suren.me/webbzr/ani/mrses
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
include ../Makefile.in

VPATH		:= 	..
LIBRARY		:= 	lib_mrses_ppu.a

ifdef BUILD_SPE
TARGET_PROCESSOR:=	ppu
else
TARGET_PROCESSOR:=	host
endif

OBJS		:=	mrses_impl.o mrses_ppu.o hw_sched.o hw_thread.o tools.o msg.o

ifdef BUILD_SPE
OBJS		+=	mrses_spu.o
endif

########################################################################
#                       Local Defines
########################################################################
CFLAGS += -fpic

ifdef BUILD_SPE
CFLAGS		+= -DHW_HAVE_SPU
endif

#INSTALL_DIR	= $(EXP_SDKBIN)/tutorial
#INSTALL_FILES	= $(PROGRAM_ppu)

########################################################################
#			buildutils/make.footer
########################################################################

ifdef CELL_TOP
	include $(CELL_TOP)/buildutils/make.footer
else
	include ../buildutils/make.footer
endif