blob: 426d0c0d9fc352ce22cf8b0f72add490df67d0ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# configuration for BeOS
INSTALL=install -c
# Show we need to use the C version of ALLOCA
ALLOCA=alloca.o
# Use it regardless of whether we are compiling with gcc or not.
USE_ALLOCA= `echo "${ALLOCA}"`
USE_HOST_ALLOCA= `echo ${HOST_PREFIX}${HOST_ALLOCA}`
SUBDIR_USE_ALLOCA = `if [ x$(ALLOCA) != x ]; then echo ../$(ALLOCA); else true; fi`
# Don't run fixproto
STMP_FIXPROTO =
|