/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/buildutils/make.header

  • 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
# --------------------------------------------------------------  
 
2
# (C)Copyright 2001,2007,                                         
 
3
# International Business Machines Corporation,                    
 
4
# Sony Computer Entertainment, Incorporated,                      
 
5
# Toshiba Corporation,                                            
 
6
#                                                                 
 
7
# All Rights Reserved.                                            
 
8
# --------------------------------------------------------------  
 
9
# PROLOG END TAG zYx                                              
 
10
 
 
11
# This file contains definitions that are sometimes needed in advance
 
12
# to process the Makefile
 
13
 
 
14
########################################################################
 
15
#                       OS Definitions
 
16
########################################################################
 
17
 
 
18
SHELL                   := /bin/bash
 
19
 
 
20
ifeq "$(findstring en_US,$(LANG))" "en_US"
 
21
  # LANG=en_US* causes bash to misinterpret [a-z]* as [a-zA-Z]*
 
22
  export LANG=C
 
23
endif
 
24
 
 
25
ifndef TERM
 
26
  TERM                  := ansi
 
27
endif
 
28
 
 
29
ifndef USR_LOCAL
 
30
  export USR_LOCAL      := /usr/local
 
31
endif
 
32
 
 
33
ifndef CELL_TOP
 
34
  CELL_TOP_buildutils   = $(dir $(filter %/make.header,$(MAKEFILE_LIST)))
 
35
  export CELL_TOP       = $(shell cd $(CELL_TOP_buildutils)/.. && pwd)
 
36
 
 
37
endif
 
38
 
 
39
ifneq "$(MAKEFILE_LIST)" ""
 
40
  include $(CELL_TOP)/buildutils/make.env
 
41
endif
 
42
 
 
43
__MAKE_HEADER__         := 1