forked from Imagelibrary/rtems
applied. This modified many Makefiles and custom files and makes many more settings (network, multiprocessing, etc) gnerated by autoconf.
46 lines
1.1 KiB
INI
46 lines
1.1 KiB
INI
# Default target settings
|
|
#
|
|
# Some of these values are redefined in the target specific .cfg files.
|
|
#
|
|
# Created by Jiri Gaisler, 16-03-97 (who is owed a debt of gratitude
|
|
# for converting RTEMS to autoconf. Thanks. --joel)
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
include $(RTEMS_ROOT)/make/target.cfg
|
|
include $(RTEMS_ROOT)/make/host.cfg
|
|
|
|
# Specify here the host and target "architectures"
|
|
HOST_ARCH=o-$(RTEMS_HOST)
|
|
ifndef TARGET_ARCH
|
|
TARGET_ARCH=o-$(RTEMS_BSP)
|
|
endif
|
|
|
|
include $(RTEMS_ROOT)/make/main.cfg
|
|
include $(RTEMS_ROOT)/$(RTEMS_BSP)/make/bsp.cfg
|
|
|
|
# use the inline functions instead of the macros
|
|
# ref: src/exec/generic/Makefile
|
|
ifeq ($(RTEMS_USE_MACROS),yes)
|
|
INLINE=macros
|
|
INLINE_UPCASE=
|
|
else
|
|
INLINE=inline
|
|
INLINE_UPCASE=INLINE
|
|
endif
|
|
|
|
# HOST Compiler config file
|
|
# You may also want to specify where the compiler resides here.
|
|
CONFIG.$(HOST_ARCH).CC = $(PROJECT_ROOT)/make/compilers/gcc.cfg
|
|
|
|
## Target compiler config file, if any
|
|
CONFIG.$(TARGET_ARCH).CC = $(RTEMS_ROOT)/make/compilers/gcc-target-default.cfg
|
|
|
|
## GCC specs extension file location
|
|
RTEMS_BSP_SPECS = $(PROJECT_ROOT)/$(RTEMS_BSP)/lib/bsp_specs
|
|
|
|
# Base name of start file
|
|
START_BASE=start
|
|
|