blob: 392bbdde589fbfab926ec42ae2f253bf4f859cc1 [file] [log] [blame]
Daniel Dunbar48464e02010-01-18 06:49:33 +00001# Options which may be overriden for platforms, etc.
2#
3# This list of such variables should be kept up to date with AvailableOptions in
4# 'make/lib_info.mk'.
5
6# The compiler to use.
7CC := gcc
8
9# The compiler flags to use.
10CFLAGS := -Wall -Werror
11
12# The list of functions to include in the library.
13FUNCTIONS :=
14
15# Whether optimized function implementations should be used.
16OPTIMIZED := 1
17
18# Miscellaneous tools.
19
20AR := ar
21# FIXME: Remove these pipes once ranlib errors are fixed.
22ARFLAGS := cru 2> /dev/null
23RANLIB := ranlib
24# FIXME: Remove these pipes once ranlib errors are fixed.
25RANLIBFLAGS := 2> /dev/null