#############################################################################
# global make options
#############################################################################
__MAKE=make



#############################################################################
# global bash options
#############################################################################
__BASH=bash



#############################################################################
# global gcc options
#############################################################################
__GCC=gcc
__GCC_FLAGS=-Wall -ansi -pedantic -O6 -fomit-frame-pointer -fno-builtin -D__NO_STRING_INLINES



#############################################################################
# global as options
#############################################################################
__AS=as
__AS_FLAGS=



#############################################################################
# global ld options
#############################################################################
__LD=ld
__LD_FLAGS=-s



#############################################################################
# global strip options
#############################################################################
__STRIP=strip
__STRIP_FLAGS=-R .note -R .comment



#############################################################################
# global sed options
#############################################################################
__SED=sed
__SED_FLAGS=-e 's/\.ident/\/\/\.ident/'  \
	-e 's/\.p2align/\/\/\.p2align/'  \
	-e 's/\.align 32/\.align 4/'



#############################################################################
# global nasm options
#############################################################################
__NASM=nasm
__NASM_FLAGS=-w+orphan-labels -w+macro-params -w+number-overflow -f elf



#############################################################################
# makedep path
#############################################################################
__MAKEDEP=tools/makedep.bash



#############################################################################
# ec64 global compile time options
#############################################################################
# comment out one or more of following variables if you don't need these
# features
__BP_SUPPORT=-DEC64_ENABLE_BP_SUPPORT
__FB_SUPPORT=-DEC64_ENABLE_FB_SUPPORT
__VGA_SUPPORT=-DEC64_ENABLE_VGA_SUPPORT
__SCREENSHOT_SUPPORT=-DEC64_ENABLE_SCREENSHOT_SUPPORT



#############################################################################
# this should stay untouched
#############################################################################
__VERSION=-DEC64_VERSION=\"0.17\"
__BUILD=-DEC64_BUILD=\"71\"

__CORE_FLAGS=${__BP_SUPPORT}
__IO_FLAGS=-DEC64_ENABLE_KDSETMODE ${__FB_SUPPORT} ${__VGA_SUPPORT} ${__SCREENSHOT_SUPPORT} ${__VERSION}
__ROM_FLAGS=
__SYS_FLAGS=
__UI_FLAGS=${__BP_SUPPORT} ${__VERSION} ${__BUILD}
