configure
author etisserant
Fri, 26 May 2006 21:24:17 +0200
changeset 24 a9543d2ccd56
parent 15 e930a0e817de
child 27 c16a00df5621
permissions -rwxr-xr-x
Linux and BSD now use "unix" target. Generic is for driverless compilation.
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     1
#!/bin/bash
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     2
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     3
#
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     4
# Copyright (C) 2004 Edouard TISSERRANT, Laurent BESSARD
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     5
# Based on Gabriel Gerhardsson's cacheprobe configure script. 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     6
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     7
# This file is part of CanFestival, a library implementing CanOpen Stack. 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     8
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
     9
# This library is free software; you can redistribute it and/or
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    10
# modify it under the terms of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    11
# License as published by the Free Software Foundation; either
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    12
# version 2.1 of the License, or (at your option) any later version.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    13
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    14
# This library is distributed in the hope that it will be useful,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    15
# but WITHOUT ANY WARRANTY; without even the implied warranty of
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    16
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    17
# Lesser General Public License for more details.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    18
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    19
# You should have received a copy of the GNU Lesser General Public
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    20
# License along with this library; if not, write to the Free Software
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    21
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    22
# 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    23
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    24
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    25
#                       DEFAULT CANFESTIVAL DEFINES                       #
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    26
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    27
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    28
# Number of can bus to use 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    29
MAX_CAN_BUS_ID=1 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    30
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    31
# max bytes to transmit by SDO Put 4 if you only support expedited transfert.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    32
# For a normal transfert, (usually for a string), put the maximum string size to transfer.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    33
SDO_MAX_LENGTH_TRANSFERT=32 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    34
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    35
# Number of SDO from differents nodes that the node can manage concurrently.   
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    36
# for a slave node, usually put 1.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    37
SDO_MAX_SIMULTANEOUS_TRANSFERTS=4
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    38
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    39
# Used for NMTable[bus][nodeId]	  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    40
# You can put less of 128 if on the netwo
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    41
# are connected only smaller nodeId node.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    42
NMT_MAX_NODE_ID=128  
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    43
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    44
#Timeout in milliseconds for SDO.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    45
#    Comment the #define if not used (infinite wait for SDO response message)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    46
SDO_TIMEOUT_MS=3000
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    47
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    48
MAX_NB_TIMER=32
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    49
24
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
    50
# Generic timers declaration defaults
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
    51
US_TO_TIMEVAL_FACTOR=
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
    52
TIMEVAL=
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
    53
TIMEVAL_MAX=
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
    54
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    55
# Default to little-endian
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    56
CANOPEN_LITTLE_ENDIAN=1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    57
CANOPEN_BIG_ENDIAN=
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    58
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    59
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    60
#                             DEFAULT BUILD OPTIONS                       #
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    61
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    62
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    63
# Leave empty for automatic detection
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    64
CC=
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    65
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    66
#default target
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    67
SUB_TARGET=
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    68
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    69
# First compiler option - we will check if it exists
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    70
CC1=gcc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    71
# Second compiler option - we will check if it exists
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    72
CC2=cc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    73
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    74
# Install prefix
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    75
SUB_PREFIX=
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    76
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    77
SUB_TIMERS_ENABLE=YES
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    78
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    79
# Used for C compiler test/detection 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    80
CFLAGS=
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    81
test=conftest
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    82
rm -f $test $test.c
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    83
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    84
XENO_CONFIG=/usr/xenomai/bin/xeno-config
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    85
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    86
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    87
#                          ARGUMENTS PARSING                              #
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    88
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    89
while [ $# -ge 1 ]; do
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    90
	optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    91
	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    92
	case $1 in
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    93
	--cc=*)		CC=$optarg;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    94
	--arch=*)	SUB_ARCH_NAME=$optarg;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    95
	--os=*)		SUB_OS_NAME=$optarg;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    96
	--prefix=*)	SUB_PREFIX=$optarg;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    97
	--target=*)	SUB_TARGET=$optarg;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
    98
	--can=*)	SUB_CAN_DRIVER=$optarg;;
15
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
    99
	--led=*)	SUB_LED_DRIVER=$optarg;;
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   100
	--nvram=*)	SUB_NVRAM_DRIVER=$optarg;;
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   101
	--timers=*)	SUB_TIMERS_DRIVER=$optarg;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   102
	--disable-Ox)	DISABLE_OPT=1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   103
			echo "On user request: Won't optimize with \"-Ox\"";;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   104
	--enable-jaxe)	DISABLE_JAXE=0;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   105
			echo "On user request: Will not install jaxe";;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   106
	--debug)	DEBUG=1;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   107
			echo "Debug messages enabled !!";;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   108
	--debugPDO)	DEBUG=PDO;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   109
			echo "Debug messages (PDO) enabled !!";;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   110
	--enable-lss)	SUB_LSS_ENABLE=YES;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   111
			echo "On user request: Will enable Auto Baudrate detect Feature";;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   112
	--desable-timers)	SUB_TIMERS_ENABLE=NO;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   113
			echo "On user request: Will enable built-in timer dispatch Feature";;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   114
	--MAX_CAN_BUS_ID=*)	MAX_CAN_BUS_ID=$1;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   115
	--SDO_MAX_LENGTH_TRANSFERT=*)	SDO_MAX_LENGTH_TRANSFERT=$1;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   116
	--SDO_MAX_SIMULTANEOUS_TRANSFERTS=*)	SDO_MAX_SIMULTANEOUS_TRANSFERTS=$1;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   117
	--NMT_MAX_NODE_ID=*)	NMT_MAX_NODE_ID=$1;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   118
	--SDO_TIMEOUT_MS=*)	SDO_TIMEOUT_MS=$1;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   119
	--CANOPEN_BIG_ENDIAN=*)	CANOPEN_BIG_ENDIAN=$1;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   120
	--MAX_NB_TIMER=*) MAX_NB_TIMER=$1;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   121
	--help)	echo	"Usage: ./configure [options]"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   122
    		echo	"Options:"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   123
    		echo 	" --cc=foo	Use compiler 'foo' instead of defaults ${CC1} or ${CC2}."
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   124
		echo 	" --arch=foo	Use architecture 'foo' instead of trying to autodetect."
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   125
		echo 	" --os=foo	Use operative system 'foo' instead of trying to autodetect."
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   126
		echo 	" --prefix=foo	Use prefix 'foo' instead of default ${SUB_PREFIX}."
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   127
		echo 	" --target=foo	Use 'foo' as build target."
24
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   128
		echo	"		\"generic\" for have independant CAN and TIMERS driver"
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   129
		echo	"		\"unix\" for unix-like systems"
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   130
		echo	"		\"win32\" for win32 systems"
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   131
		echo	"		\"hcs12\" for HCS12 micro-controller"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   132
		echo	"		\"ecos_lpc2138_sja1000\" for eCOS + Philips ARM LPC21381 + Philips SJA1000" 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   133
		echo 	" --can=foo	Use 'foo' as CAN driver (can be either 'peak' or 'virtual')"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   134
		echo 	" --timers=foo	Use 'foo' as TIMERS driver (can be either 'unix' or 'xenomai')"
15
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   135
		echo	" --led=foo	Use 'foo' as DS-305 LED driver (use 'none' to disable or 'stdout')"
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   136
		echo	" --nvram=foo	Use 'foo' as NVRAM driver (use 'none' to disable or 'file')"
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   137
		echo	" --disable-Ox	Disable gcc \"-Ox\" optimizations."
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   138
		echo	" --enable-jaxe	Enable \"jaxe\" installation."
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   139
		echo	" --debug	Enable debug messages."
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   140
		echo	" --debugPDO	Enable debug messages, using PDO."
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   141
		echo	" --enable-lss	Enable Auto Baudrate detect Feature"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   142
		echo
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   143
		echo	"Stack compilation constants"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   144
		echo	" --MAX_CAN_BUS_ID [=1] Number of can bus to use"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   145
		echo	" --SDO_MAX_LENGTH_TRANSFERT [=32] max bytes to transmit by SDO"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   146
		echo	" --SDO_MAX_SIMULTANEOUS_TRANSFERTS [=4] Number of SDO that the node can manage concurrently"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   147
		echo	" --NMT_MAX_NODE_ID [=128] can be reduced to gain memory on small network"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   148
		echo	" --SDO_TIMEOUT_MS [=3000] Timeout in milliseconds for SDO (None to disable the feature)"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   149
		exit 0;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   150
	*)		echo "Unknown argument ${1}"; exit -1;;
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   151
	esac
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   152
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   153
	shift
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   154
done
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   155
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   156
if [ "$DISABLE_JAXE" = "1" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   157
	SUB_OPT_JAXE=
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   158
else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   159
	which java >/dev/null 2>&1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   160
	if (( $? )); then 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   161
		SUB_OPT_JAXE=
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   162
		echo "Could not find java VM ! Jaxe XML editor disabled !"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   163
	else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   164
		SUB_OPT_JAXE=jaxe
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   165
	fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   166
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   167
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   168
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   169
#                              GUESS OS/ARCH                              #
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   170
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   171
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   172
if [ "$SUB_OS_NAME" = "" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   173
	SUB_OS_NAME="`(uname -s | sed \"s/\//-/\" | sed \"s/_/-/\" \
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   174
			| sed \"s/-.*//g\") 2>&1`"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   175
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   176
if [ "$SUB_OS_NAME" = "HP" -o "$SUB_OS_NAME" = "HP-UX" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   177
	SUB_OS_NAME=HPUX
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   178
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   179
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   180
if [ "$SUB_ARCH_NAME" = "" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   181
	if [ "$CC" = "" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   182
		A_NAME="`(uname -m) 2>&1`"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   183
	else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   184
		A_NAME="`$CC -dumpmachine | sed 's:-.*::'`"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   185
	fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   186
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   187
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   188
# x86
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   189
if [ "$A_NAME" = "i386" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   190
	SUB_ARCH_NAME=x86
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   191
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   192
if [ "$A_NAME" = "i486" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   193
	SUB_ARCH_NAME=x86
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   194
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   195
if [ "$A_NAME" = "i586" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   196
	SUB_ARCH_NAME=x86
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   197
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   198
if [ "$A_NAME" = "i686" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   199
	SUB_ARCH_NAME=x86
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   200
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   201
if [ "$A_NAME" = "x86" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   202
	SUB_ARCH_NAME=x86
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   203
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   204
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   205
# x86_64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   206
if [ "$A_NAME" = "x86_64" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   207
	SUB_ARCH_NAME=x86_64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   208
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   209
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   210
# ia64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   211
if [ "$A_NAME" = "ia64" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   212
	SUB_ARCH_NAME=ia64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   213
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   214
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   215
# alpha
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   216
if [ "$A_NAME" = "alpha" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   217
	SUB_ARCH_NAME=alpha
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   218
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   219
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   220
# parisc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   221
if [ "$A_NAME" = "parisc" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   222
	SUB_ARCH_NAME=parisc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   223
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   224
if [ "$SUB_OS_NAME" = "HPUX" -a "$A_NAME" != "ia64" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   225
	# If we're on HP-UX and the architecture is *not* ia64,
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   226
	# it's most likely parisc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   227
	SUB_ARCH_NAME=parisc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   228
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   229
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   230
# sparc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   231
if [ "$A_NAME" = "sparc" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   232
	SUB_ARCH_NAME=sparc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   233
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   234
if [ "$A_NAME" = "sun4u" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   235
	SUB_ARCH_NAME=sparc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   236
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   237
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   238
# sparc64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   239
if [ "$A_NAME" = "sparc64" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   240
	SUB_ARCH_NAME=sparc64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   241
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   242
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   243
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   244
#
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   245
# The following has not been verified
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   246
#
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   247
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   248
# ppc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   249
if [ "$A_NAME" = "powerpc" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   250
	SUB_ARCH_NAME=ppc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   251
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   252
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   253
# ppc64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   254
if [ "$A_NAME" = "powerpc64" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   255
	SUB_ARCH_NAME=ppc64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   256
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   257
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   258
# arm
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   259
if [ "$A_NAME" = "arm" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   260
	SUB_ARCH_NAME=arm
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   261
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   262
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   263
# mips3
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   264
if [ "$A_NAME" = "ip32" ]; then		# IRIX
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   265
	SUB_ARCH_NAME=mips3
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   266
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   267
if [ "$A_NAME" = "ip35" ]; then		# IRIX
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   268
	SUB_ARCH_NAME=mips3
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   269
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   270
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   271
# mips32
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   272
if [ "$A_NAME" = "mips32" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   273
	SUB_ARCH_NAME=mips32
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   274
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   275
if [ "$A_NAME" = "mips" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   276
	SUB_ARCH_NAME=mips32
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   277
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   278
if [ "$A_NAME" = "MIPS" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   279
	SUB_ARCH_NAME=mips32
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   280
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   281
if [ "$A_NAME" = "RISC" ]; then		# MIPS Ultrix
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   282
	SUB_ARCH_NAME=mips32
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   283
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   284
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   285
# mips64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   286
if [ "$A_NAME" = "mips64" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   287
	SUB_ARCH_NAME=mips64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   288
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   289
if [ "$A_NAME" = "MIPS64" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   290
	SUB_ARCH_NAME=mips64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   291
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   292
if [ "$A_NAME" = "IP64" ]; then		# IRIX
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   293
	SUB_ARCH_NAME=mips64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   294
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   295
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   296
# power
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   297
if [ "$A_NAME" = "power" ]; then	# Manual
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   298
	SUB_ARCH_NAME=power
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   299
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   300
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   301
echo "Using OS: ${SUB_OS_NAME}"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   302
echo "Using architecture: ${SUB_ARCH_NAME}"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   303
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   304
if [ "$SUB_ARCH_NAME" = "" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   305
	echo "Error: could not detect what architecture this system is running!"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   306
	echo "Please supply manually instead with \"--arch=foo\""
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   307
	exit -1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   308
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   309
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   310
if [ "$SUB_OS_NAME" = "HPUX" -a "$CC" = "gcc" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   311
	# Only if we are on HP-UX, ia64 and using gcc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   312
	SUB_PROG_CFLAGS=-mlp64
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   313
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   314
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   315
if [ "$SUB_OS_NAME" = "SunOS" -a "$SUB_ARCH_NAME" = "sparc" -a "$CC" = "gcc" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   316
	# Only if we are on SunOS, sparc and using gcc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   317
	# Tells the assembler that we are dealing with a v8plusa arch sparc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   318
	# and -mimpure-text is needed for shared library linking
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   319
	SUB_PROG_CFLAGS="-Wa,-xarch=v8plusa -mimpure-text"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   320
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   321
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   322
if [ "$SUB_OS_NAME" = "AIX" -a "$SUB_ARCH_NAME" = "power" -a "$CC" = "gcc" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   323
	# Only if we are on AIX, power and using gcc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   324
	# The assembler may default to generating Power and PowerPC compatible
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   325
	# code. We need to override that.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   326
	SUB_PROG_CFLAGS=-Wa,-mpwr
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   327
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   328
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   329
if [ "$SUB_OS_NAME" = "AIX" -a "$SUB_ARCH_NAME" = "ppc" -a "$CC" = "gcc" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   330
	# Only if we are on AIX, ppc and using gcc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   331
	# The assembler may default to generating Power and PowerPC compatible
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   332
	# code. We need to override that.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   333
	SUB_PROG_CFLAGS=-Wa,-mppc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   334
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   335
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   336
if [ "$SUB_ARCH_NAME" = "x86_64" -a "$CC" = "gcc" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   337
	# Only if we are on x86_64 and using gcc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   338
	# For shared library generation, it needs this
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   339
	SUB_PROG_CFLAGS=-fPIC
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   340
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   341
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   342
###########################################################################
24
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   343
#                      DEFAULT TARGET/DRIVERS GUESSING                    #
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   344
###########################################################################
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   345
# If target not specified, try to gess one
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   346
if [ "$SUB_TARGET" = "" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   347
	if [ "$SUB_OS_NAME" = "CYGWIN" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   348
		echo "Choosing win32 target"
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   349
		SUB_TARGET=win32
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   350
	else
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   351
		echo "Choosing unix target"
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   352
		SUB_TARGET=unix
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   353
	fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   354
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   355
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   356
# Try to gess can
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   357
if [ "$SUB_CAN_DRIVER" = "" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   358
	if [ "$SUB_TARGET" = "unix" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   359
		if [ -e /usr/lib/libpcan.so ]; then 
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   360
			echo "Choosing installed Peak driver as CAN driver."
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   361
			SUB_CAN_DRIVER=peak
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   362
		else
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   363
			echo "Choosing virtual CAN driver."
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   364
			SUB_CAN_DRIVER=virtual
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   365
		fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   366
	fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   367
	if [ "$SUB_TARGET" = "win32" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   368
		echo "CAN driver for windows --Not Implemented--"
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   369
	fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   370
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   371
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   372
if [ "$SUB_TARGET" = "unix" -a "$SUB_LED_DRIVER" = "" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   373
	echo "Choosing stdout LED driver."
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   374
	SUB_LED_DRIVER=stdout
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   375
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   376
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   377
if [ "$SUB_TARGET" = "unix" -a "$SUB_NVRAM_DRIVER" = "" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   378
	echo "Choosing binary file NVRAM driver. -- not implemented --"
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   379
#	SUB_NVRAM_DRIVER=file
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   380
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   381
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   382
# If target is unix, default timers also
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   383
if [ "$SUB_TARGET" = "unix" -a "$SUB_TIMERS_DRIVER" = "" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   384
	echo "Choosing unix timers driver."
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   385
	SUB_TIMERS_DRIVER=unix
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   386
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   387
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   388
# Warn for unstalled peak driver if choosen
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   389
if [ "$SUB_CAN_DRIVER" = "peak" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   390
	if [ ! -e /usr/lib/libpcan.so ]; then 
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   391
		echo "Peak driver hasn't been installed !"
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   392
		exit -1
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   393
	fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   394
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   395
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   396
###########################################################################
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   397
#              TARGET/DRIVER SPECIFIC CFLAGS and OPTIONS                  #
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   398
###########################################################################
24
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   399
if [ "$SUB_TARGET" = "generic" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   400
	if [ "$US_TO_TIMEVAL_FACTOR" = "" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   401
		US_TO_TIMEVAL_FACTOR=1
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   402
	fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   403
	if [ "$TIMEVAL" = "" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   404
		TIMEVAL=UNS64
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   405
	fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   406
	if [ "$TIMEVAL_MAX" = "" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   407
		TIMEVAL_MAX=0xffffffffffffffff
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   408
	fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   409
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   410
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   411
if [ "$SUB_TARGET" = "hcs12" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   412
	# Only if we want to compile for a µC HCS12
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   413
	# search for gcc hcs12 compiler m6811-elf-gcc or m68hc12-gcc ?
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   414
	if [ "$CC" = "" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   415
		which m6811-elf-gcc >/dev/null 2>&1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   416
		if (( $? )); then 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   417
			which m68hc12-gcc >/dev/null 2>&1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   418
			if (( $? )); then 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   419
				echo "Please use --cc flag to specify compiler"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   420
				exit 0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   421
			else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   422
				CC=m68hc12-gcc 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   423
			fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   424
		else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   425
			CC=m6811-elf-gcc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   426
			SUB_PROG_CFLAGS=-m68hc12
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   427
		fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   428
	fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   429
fi	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   430
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   431
if [ "$SUB_TARGET" = "ecos_lpc2138_sja1000" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   432
	# search for gcc arm compiler arm-elf-gcc or arm-elf-gcc ?
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   433
	if [ "$CC" = "" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   434
		which arm-elf-gcc >/dev/null 2>&1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   435
		if (( $? )); then 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   436
			echo "error : Could not find arm-elf-gcc"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   437
		else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   438
			CC=arm-elf-gcc
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   439
			SUB_PROG_CFLAGS="-mcpu=arm7tdmi -Wall -Wpointer-arith -Wstrict-prototypes -Winline -Wundef -Os \
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   440
                        -ffunction-sections -fdata-sections -fno-exceptions -finline-functions"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   441
		fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   442
	fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   443
	# ecos sja1000 driver implements calls needed by LSS.
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   444
	SUB_LSS_ENABLE=YES
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   445
	SUB_LED_ENABLE=YES
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   446
	SUB_NVRAM_ENABLE=YES
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   447
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   448
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   449
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   450
#### CAN_DRIVER ####
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   451
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   452
if [ "$SUB_CAN_DRIVER" = "peak" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   453
	SUB_EXE_CFLAGS=$SUB_EXE_CFLAGS\ -lpcan
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   454
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   455
24
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   456
if [ "$SUB_CAN_DRIVER" = "none" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   457
	SUB_CAN_DRIVER=
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   458
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   459
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   460
#### TIMERS_DRIVER ####
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   461
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   462
if [ "$SUB_TIMERS_DRIVER" = "unix" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   463
	SUB_EXE_CFLAGS=$SUB_EXE_CFLAGS\ -lpthread
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   464
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   465
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   466
if [ "$SUB_TIMERS_DRIVER" = "xeno" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   467
	SUB_EXE_CFLAGS=$SUB_EXE_CFLAGS\ -lnative\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   468
\	-L`$XENO_CONFIG --library-dir`
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   469
	SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ `$XENO_CONFIG --xeno-cflags`
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   470
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   471
24
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   472
if [ "$SUB_TIMERS_DRIVER" = "none" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   473
	SUB_TIMERS_DRIVER=
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   474
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   475
15
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   476
#### LED_DRIVER ####
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   477
#enable led support if a led driver have been selected.
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   478
if [ "$SUB_LED_DRIVER" != "" ]; then
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   479
	SUB_LED_ENABLE=YES
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   480
fi
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   481
#if "none" driver is selected led feature is enabled but driver not compiled
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   482
if [ "$SUB_LED_DRIVER" = "none" ]; then
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   483
	SUB_LED_DRIVER=
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   484
fi
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   485
#if "disable" driver is selected led feature is disabled
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   486
if [ "$SUB_LED_DRIVER" = "disable" ]; then
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   487
	SUB_LED_ENABLE=
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   488
	SUB_LED_DRIVER=
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   489
fi
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   490
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   491
#### NVRAM_DRIVER ####
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   492
#enable nvram support if a nvram driver have been selected.
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   493
if [ "$SUB_NVRAM_DRIVER" != "" ]; then
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   494
	SUB_NVRAM_ENABLE=YES
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   495
fi
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   496
#if "none" driver is selected nvram feature is enabled but driver not compiled
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   497
if [ "$SUB_NVRAM_DRIVER" = "none" ]; then
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   498
	SUB_NVRAM_DRIVER=
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   499
fi
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   500
#if "disable" driver is selected nvram feature is disabled
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   501
if [ "$SUB_NVRAM_DRIVER" = "disable" ]; then
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   502
	SUB_NVRAM_ENABLE=
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   503
	SUB_NVRAM_DRIVER=
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   504
fi
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   505
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   506
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   507
#                              GUESS COMPILER                             #
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   508
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   509
# If CC is empty, the user wanted automatic detection
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   510
if [ "$CC" = "" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   511
	# Check for second compiler, CC2
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   512
	cat > $test.c <<EOF
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   513
	int main() { return 0; }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   514
EOF
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   515
	if test "`($CC2 -c $CFLAGS $test.c) 2>&1`" = ""; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   516
		DETECTCC=$CC2
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   517
		echo "Checking for ${CC2}... Yes."
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   518
	else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   519
		echo "Checking for ${CC2}... No."
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   520
	fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   521
	rm -f $test.c $test.o
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   522
	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   523
	# Check for first compiler, CC1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   524
	cat > $test.c <<EOF
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   525
	int main() { return 0; }
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   526
EOF
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   527
	if test "`($CC1 -c $CFLAGS $test.c) 2>&1`" = ""; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   528
		DETECTCC=$CC1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   529
		echo "Checking for ${CC1}... Yes."
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   530
	else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   531
		echo "Checking for ${CC1}... No."
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   532
	fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   533
	rm -f $test.c $test.o
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   534
	CC=$DETECTCC
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   535
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   536
# Check if we decided on a compiler after all
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   537
if [ "$CC" = "" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   538
	echo "Error: Could not find a C compiler"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   539
	echo "Please supply the wanted compiler"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   540
	exit -1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   541
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   542
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   543
echo "Using ${CC}"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   544
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   545
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   546
#                              GUESS PREFIX's                             #
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   547
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   548
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   549
SUB_BINUTILS_PREFIX=`echo "$CC" | sed 's/gcc$//'`
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   550
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   551
# Guess prefix as regard cross compiling target machine
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   552
if [ "$SUB_PREFIX" = "" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   553
	$CC -dumpspecs |grep -A 1 'cross_compile'|grep -q 1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   554
	if (( $? )); then 
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   555
		SUB_PREFIX=/usr/local
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   556
		echo "Not cross-compiling. Will install in $SUB_PREFIX";
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   557
	else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   558
		SUB_PREFIX=/usr/`$CC -dumpmachine`
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   559
		echo "This is a cross-compiler. Will install in $SUB_PREFIX";			
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   560
	fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   561
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   562
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   563
echo "Using prefix: ${SUB_PREFIX}"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   564
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   565
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   566
#                   CANFESTIVAL DEFINES --> config.h                      #
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   567
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   568
# Some CONSTANTS preparation
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   569
if [ "$CANOPEN_BIG_ENDIAN" = "" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   570
	CANOPEN_LITTLE_ENDIAN=1
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   571
else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   572
	CANOPEN_LITTLE_ENDIAN=
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   573
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   574
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   575
# Create include/config.h with the relevant contents
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   576
rm -f include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   577
echo "/*"\ >  include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   578
echo "This file is part of CanFestival, a library implementing CanOpen Stack." >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   579
echo "" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   580
echo "Copyright (C): Edouard TISSERANT and Francis DUPIN" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   581
echo "See COPYING file for copyrights details." >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   582
echo "" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   583
echo "This library is free software; you can redistribute it and/or" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   584
echo "modify it under the terms of the GNU Lesser General Public" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   585
echo "License as published by the Free Software Foundation; either" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   586
echo "version 2.1 of the License, or (at your option) any later version." >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   587
echo "" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   588
echo "This library is distributed in the hope that it will be useful," >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   589
echo "but WITHOUT ANY WARRANTY; without even the implied warranty of" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   590
echo "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   591
echo "Lesser General Public License for more details." >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   592
echo "" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   593
echo "You should have received a copy of the GNU Lesser General Public" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   594
echo "License along with this library; if not, write to the Free Software" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   595
echo "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   596
echo "*/" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   597
echo "" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   598
echo "#ifndef _CONFIG_H_" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   599
echo "#define _CONFIG_H_" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   600
echo "" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   601
for i in \
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   602
 MAX_CAN_BUS_ID\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   603
 SDO_MAX_LENGTH_TRANSFERT\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   604
 SDO_MAX_SIMULTANEOUS_TRANSFERTS\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   605
 NMT_MAX_NODE_ID\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   606
 SDO_TIMEOUT_MS\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   607
 MAX_NB_TIMER\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   608
 CANOPEN_BIG_ENDIAN\
24
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   609
 CANOPEN_LITTLE_ENDIAN\
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   610
 US_TO_TIMEVAL_FACTOR\
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   611
 TIMEVAL\
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   612
 TIMEVAL_MAX; do
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   613
if [ "${!i}" = "" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   614
echo "// $i is not defined" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   615
else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   616
echo "#define $i ${!i}" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   617
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   618
done	
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   619
echo "" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   620
echo "#endif /* _CONFIG_H_ */" >> include/config.h
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   621
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   622
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   623
#                           DEBUG DEFINES/CFLAGS                          #
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   624
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   625
if [ "$DEBUG" != "" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   626
	SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DDEBUG_CAN\ -DDEBUG_WAR_CONSOLE_ON\ -DDEBUG_ERR_CONSOLE_ON\ -g
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   627
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   628
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   629
if [ "$DEBUG" = "PDO" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   630
	SUB_PROG_CFLAGS=$SUB_PROG_CFLAGS\ -DPDO_ERROR
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   631
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   632
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   633
if [ "$DISABLE_OPT" = "1" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   634
	SUB_OPT_CFLAGS=
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   635
else
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   636
	SUB_OPT_CFLAGS=\$\(OPT_CFLAGS\)
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   637
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   638
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   639
###########################################################################
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   640
#                              CREATE MAKEFILES                           #
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   641
###########################################################################
24
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   642
# General Makefiles
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   643
MAKEFILES=Makefile.in\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   644
\ src/Makefile.in\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   645
\ drivers/Makefile.in\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   646
\ objdictgen/Makefile.in\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   647
\ examples/Makefile.in
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   648
24
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   649
# Drivers dependent Makefiles
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   650
if [ "$SUB_TIMERS_DRIVER" != "" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   651
	MAKEFILES=$MAKEFILES\
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   652
\	drivers/timers_$SUB_TIMERS_DRIVER/Makefile.in
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   653
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   654
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   655
if [ "$SUB_CAN_DRIVER" != "" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   656
	MAKEFILES=$MAKEFILES\
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   657
\	drivers/can_$SUB_CAN_DRIVER/Makefile.in
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   658
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   659
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   660
if [ "$SUB_LED_DRIVER" != "" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   661
	MAKEFILES=$MAKEFILES\
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   662
\	drivers/led_$SUB_LED_DRIVER/Makefile.in
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   663
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   664
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   665
if [ "$SUB_NVRAM_DRIVER" != "" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   666
	MAKEFILES=$MAKEFILES\
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   667
\	drivers/nvram_$SUB_NVRAM_DRIVER/Makefile.in
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   668
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   669
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   670
# Target dependent Makefiles
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   671
MAKEFILES=$MAKEFILES\ drivers/$SUB_TARGET/Makefile.in
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   672
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   673
if [ "$SUB_TARGET" = "unix" ]; then
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   674
	MAKEFILES=$MAKEFILES\
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   675
\	examples/AppliMaster_Linux/Makefile.in\
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   676
\	examples/AppliSlave_Linux/Makefile.in\
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   677
\	examples/TestMasterSlave/Makefile.in
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   678
fi
a9543d2ccd56 Linux and BSD now use "unix" target. Generic is for driverless compilation.
etisserant
parents: 15
diff changeset
   679
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   680
if [ "$SUB_TARGET" = "hcs12" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   681
	MAKEFILES=$MAKEFILES\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   682
\	examples/AppliMaster_HCS12/Makefile.in\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   683
\	examples/AppliSlave_HCS12/Makefile.in\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   684
\	examples/gene_SYNC_HCS12/Makefile.in
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   685
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   686
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   687
if [ "$SUB_TARGET" = "ecos_lpc2138_sja1000" ]; then
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   688
	MAKEFILES=$MAKEFILES\
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   689
\	examples/ecos_lpc2138_sja1000/src/Makefile.in
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   690
fi
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   691
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   692
for makefile_in in $MAKEFILES; do
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   693
	makefile=`echo $makefile_in | sed 's:.in$::'`
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   694
	echo "Creating $makefile"
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   695
	sed < $makefile_in "
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   696
	s:SUB_CC:${CC}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   697
	s:SUB_PROG_CFLAGS:${SUB_PROG_CFLAGS}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   698
	s:SUB_EXE_CFLAGS:${SUB_EXE_CFLAGS}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   699
	s:SUB_PREFIX:${SUB_PREFIX}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   700
	s:SUB_OS_NAME:${SUB_OS_NAME}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   701
	s:SUB_ARCH_NAME:${SUB_ARCH_NAME}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   702
	s:SUB_OPT_CFLAGS:${SUB_OPT_CFLAGS}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   703
	s:SUB_TARGET:${SUB_TARGET}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   704
	s:SUB_BINUTILS_PREFIX:${SUB_BINUTILS_PREFIX}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   705
	s:SUB_OPT_JAXE:${SUB_OPT_JAXE}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   706
	s:SUB_LSS_ENABLE:${SUB_LSS_ENABLE}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   707
	s:SUB_LED_ENABLE:${SUB_LED_ENABLE}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   708
	s:SUB_NVRAM_ENABLE:${SUB_NVRAM_ENABLE}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   709
	s:SUB_TIMERS_ENABLE:${SUB_TIMERS_ENABLE}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   710
	s:SUB_TIMERS_DRIVER:timers_${SUB_TIMERS_DRIVER}:
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   711
	s:SUB_CAN_DRIVER:can_${SUB_CAN_DRIVER}:
15
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   712
	s:SUB_LED_DRIVER:led_${SUB_LED_DRIVER}:
e930a0e817de Re-orginized led and nvram related code, for generic target.
etisserant
parents: 0
diff changeset
   713
	s:SUB_NVRAM_DRIVER:nvram_${SUB_NVRAM_DRIVER}:
0
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   714
	" > $makefile
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   715
done
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   716
4472ee7c6c3e Commit a new cvs repo.
etisserant
parents:
diff changeset
   717
echo "All done."