/ani/mrses

To get this branch, use:
bzr branch http://suren.me/webbzr/ani/mrses
1 by Suren A. Chilingaryan
Initial import
1
include ../Makefile.in
2
3
VPATH		:= 	..
4
LIBRARY		:= 	lib_mrses_ppu.a
5
6
ifdef BUILD_SPE
7
TARGET_PROCESSOR:=	ppu
8
else
9
TARGET_PROCESSOR:=	host
10
endif
11
12
OBJS		:=	mrses_impl.o mrses_ppu.o hw_sched.o hw_thread.o tools.o msg.o
13
14
ifdef BUILD_SPE
15
OBJS		+=	mrses_spu.o
16
endif
17
18
########################################################################
19
#                       Local Defines
20
########################################################################
21
CFLAGS += -fpic
22
23
ifdef BUILD_SPE
24
CFLAGS		+= -DHW_HAVE_SPU
25
endif
26
27
#INSTALL_DIR	= $(EXP_SDKBIN)/tutorial
28
#INSTALL_FILES	= $(PROGRAM_ppu)
29
30
########################################################################
31
#			buildutils/make.footer
32
########################################################################
33
34
ifdef CELL_TOP
35
	include $(CELL_TOP)/buildutils/make.footer
36
else
37
	include ../buildutils/make.footer
38
endif