mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-20 03:38:43 +00:00
c7de829c79
Add code for AmigaOne board (preliminary merge to U-Boot, still WIP) * Patch by Jon Diekema, 12 Nov 2002: - Adding URL for IEEE OUI lookup - Making the autoboot #defines dependent on CONFIG_AUTOBOOT_KEYED being defined. - In the CONFIG_EXTRA_ENV_SETTINGS #define, the root-on-initrd and root-on-nfs macros are designed to switch how the default boot method gets defined.
26 lines
612 B
Batchfile
26 lines
612 B
Batchfile
@echo off
|
|
REM Setup for compiling with GNU C compiler
|
|
|
|
if .%CHECKED%==.1 goto checked_build
|
|
set LIB=%SCITECH_LIB%\LIB\release\win32\gcc2
|
|
echo Release build enabled.
|
|
goto setvars
|
|
|
|
:checked_build
|
|
set LIB=%SCITECH_LIB%\LIB\debug\win32\gcc2
|
|
echo Checked debug build enabled.
|
|
goto setvars
|
|
|
|
:setvars
|
|
set INCLUDE=include;%SCITECH%\include;%PRIVATE%\include
|
|
set MAKESTARTUP=%SCITECH%\makedefs\gcc_win32.mk
|
|
set MAKE_MODE=
|
|
set USE_WIN16=
|
|
set USE_WIN32=1
|
|
set WIN32_GUI=1
|
|
set USE_SNAP=
|
|
set GCC_LIBBASE=gcc2
|
|
PATH %SCITECH_BIN%;%GCC2_PATH%\NATIVE\BIN;%DEFPATH%
|
|
|
|
echo GCC 2.9.x 32-bit Win32 GUI compilation environment set up
|
|
|