/ani/mrses

To get this branch, use:
bzr branch http://suren.me/webbzr/ani/mrses

« back to all changes in this revision

Viewing changes to cell/ppu/Makefile

  • Committer: Suren A. Chilingaryan
  • Date: 2010-04-28 04:30:08 UTC
  • Revision ID: csa@dside.dyndns.org-20100428043008-vd9z0nso9axezvlp
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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