Char 28 ("CTRL \") was never sent by French keymap. Console handler closes the window...
[AROS.git] / config / target.cfg.in
blob3cfb2bdd887077c42a9e2cee3919f33bed6ada6f
1 #   Copyright © 1995-2014, The AROS Development Team. All rights reserved.
2 #   $Id$
4 #   Desc: target.cfg - an autoconf output file for make variables.
7 # -------------------------------------------------------------------------- 
8 # TARGET SECTION
9 # -------------------------------------------------------------------------- 
10 FAMILY          := @aros_target_family@
11 FLAVOUR         := @aros_flavour@
12 SHARED_MOD      := @aros_shared_default@
14 TARGET_CPP      := @aros_target_cpp@
15 KERNEL_CPP      := @aros_kernel_cpp@
16 TARGET_CC       := @aros_cc_pre@ @aros_target_cc@
17 TARGET_GCC_VER  := @target_gcc_version@
18 KERNEL_CC       := @aros_kernel_cc@
19 TARGET_CXX      := @aros_target_cxx@
20 TARGET_AS       := @aros_target_as@
21 TARGET_LD       := @aros_target_ld@
22 SHARED_LD       := @aros_shared_ld@
23 KERNEL_LD       := @aros_kernel_ld@
24 GENMAP          := @aros_target_genmap@
25 TARGET_OBJCOPY  := @aros_target_objcopy@
27 ifeq ($(DEBUG),yes)
28 TARGET_STRIP    := @NOP@
29 else
30 TARGET_STRIP    := @aros_target_strip@ @aros_target_strip_flags@
31 endif
33 TARGET_OBJDUMP  := @aros_target_objdump@
34 KERNEL_RESCOMP  := @aros_kernel_rescomp@
36 CONFIG_CFLAGS   := @aros_config_cflags@
37 CONFIG_AFLAGS   := @aros_config_aflags@
38 CONFIG_LDFLAGS  := @aros_config_ldflags@
39 SHARED_CFLAGS   := @aros_shared_cflags@
40 SHARED_AFLAGS   := @aros_shared_aflags@
41 SHARED_LDFLAGS  := @aros_shared_ldflags@
42 KERNEL_CFLAGS   := @aros_kernel_cflags@
43 KERNEL_OBJCFLAGS := @aros_kernel_objcflags@
44 KERNEL_INCLUDES := @aros_kernel_includes@
45 KERNEL_LDFLAGS  := @aros_kernel_ldflags@
46 TARGET_CFLAGS   := @aros_target_cflags@
47 DEBUG_CFLAGS    := @aros_debug_cflags@
48 DEBUG_AFLAGS    := @aros_debug_aflags@
49 DEBUG_LDFLAGS   := @aros_debug_ldflags@
50 OPTIMIZATION_CFLAGS := @aros_optimization_cflags@
51 ISA_FLAGS       := @aros_isa_flags@
53 NOSTDINC_CFLAGS   := @aros_target_nostdinc_cflags@
54 KERNEL_IQUOTE     := @kernel_cflags_iquote@
55 KERNEL_IQUOTE_END := @kernel_cflags_iquote_end@
56 CFLAGS_IQUOTE     := @aros_cflags_iquote@
57 CFLAGS_IQUOTE_END := @aros_cflags_iquote_end@
58 NOSTARTUP_LDFLAGS := @aros_target_nostartup_ldflags@
59 NIX_LDFLAGS       := @aros_target_nix_ldflags@
60 DETACH_LDFLAGS    := @aros_target_detach_ldflags@
61 NOSTDLIB_LDFLAGS  := @aros_target_nostdlib_ldflags@
63 UNUSED_BUT_SET_VARIABLE_CFLAGS := @aros_cflags_unused_but_set_variable@
64 ARRAY_BOUNDS_CFLAGS            := @aros_cflags_array_bounds@
65 ENUM_COMPARE_CFLAGS            := @aros_cflags_enum_compare@
66 STRICT_OVERFLOW_CFLAGS         := @aros_cflags_strict_overflow@
67 FORMAT_SECURITY_CFLAGS         := @aros_cflags_format_security@
69 COMPILER_LIBS   := @aros_compiler_libs@
70 ARCH_LIBS       := @aros_arch_libs@
72 AR              := @aros_target_ar@
73 AR_PLAIN        := @aros_plain_ar@
74 KERNEL_AR       := @aros_kernel_ar@
75 RANLIB          := @aros_target_ranlib@
76 KERNEL_RANLIB   := @aros_kernel_ranlib@
77 NM              := @aros_target_nm@
78 NM_PLAIN        := @aros_plain_nm@
79 OBJCOPY         := @aros_target_objcopy@
80 OBJDUMP         := @aros_target_objdump@
81 STRIP_PLAIN     := @aros_target_strip@
83 # Apple iOS specific
84 IOS_PLATFORM    := @aros_ios_platform@
85 IOS_OS_VERSION  := @aros_ios_version@
86 IOS_SDK_PATH    := @aros_ios_sdk@
88 # ARM gcc default target
89 GCC_DEFAULT_CPU := @gcc_default_cpu@
90 GCC_DEFAULT_FPU := @gcc_default_fpu@
91 GCC_DEFAULT_FLOAT_ABI := @gcc_default_float_abi@
93 # --------------------------------------------------------------------------
94 # MAGIC: This is needed here for MetaMake to work. mmake will read the
95 # configured version of this file to find out a number of variables.
96 # --------------------------------------------------------------------------
97 HOSTDIR         := $(TOP)/bin/$(AROS_HOST_ARCH)-$(AROS_HOST_CPU)
98 TOOLDIR         := $(HOSTDIR)/tools
99 GENMF           := $(TOOLDIR)/genmf.py
100 ARCH            := $(AROS_TARGET_ARCH)
101 CPU             := $(AROS_TARGET_CPU)
102 CC              := $(TARGET_CC)
103 AS              := $(TARGET_AS)
105 # Bootloader
106 AROS_TARGET_BOOTLOADER := @aros_target_bootloader@
108 # Optional components
109 UNIXGFX_HIDD_TARGET   := @unixgfx_hidd_target@
110 SDL_HIDD_TARGET       := @sdl_hidd_target@
111 PCI_HIDD_TARGET       := @pci_hidd_target@
112 OSS_LIBRARY_TARGET    := @oss_library_target@
113 CROSSTOOLS_TARGET     := @crosstools_target@
114 OBJC_TARGET           := @objc_target@
116 # Defined as 'yes' if we can build our own toolchain.
117 # This is a prerequisite for ObjectiveC and C++ support,
118 # since they depend on the AROS C Library
119 AROS_TARGET_TOOLCHAIN := @aros_target_toolchain@
121 HOST_X11_CFLAGS := $(addprefix -I,@aros_host_x11_includes@)
122 HOST_X11_LIBS   := $(addprefix -L,@aros_host_x11_libdirs@) -lX11
123 HOST_SDL_CFLAGS := @aros_host_sdl_cflags@
124 HOST_SDL_LIBS   := @aros_host_sdl_libs@
126 SDL_CFLAGS      := @SDL_CFLAGS@
128 # DBUS flags
129 ENABLE_DBUS     := @ENABLE_DBUS@
130 DBUS_CFLAGS     := @DBUS_CFLAGS@
131 DBUS_LIBFLAGS   := @DBUS_LIBFLAGS@
133 # MMU flags
134 USE_MMU         := @aros_enable_mmu@
136 # Kernel private includes, in order of precedence:
137 PRIV_KERNEL_INCLUDES := -I$(SRCDIR)/arch/$(CPU)-$(ARCH)/kernel \
138                         -I$(SRCDIR)/arch/all-$(ARCH)/kernel
139 ifneq ($(FAMILY),)
140 PRIV_KERNEL_INCLUDES += -I$(SRCDIR)/arch/all-$(FAMILY)/kernel
141 endif
142 PRIV_KERNEL_INCLUDES += -I$(SRCDIR)/arch/$(CPU)-all/kernel \
143                         -I$(SRCDIR)/rom/kernel
145 # Exec private includes, in order of precedence:
146 PRIV_EXEC_INCLUDES := -I$(SRCDIR)/arch/$(CPU)-$(ARCH)/exec \
147                       -I$(SRCDIR)/arch/all-$(ARCH)/exec
148 ifneq ($(FAMILY),)
149 PRIV_EXEC_INCLUDES += -I$(SRCDIR)/arch/all-$(FAMILY)/exec
150 endif
151 PRIV_EXEC_INCLUDES += -I$(SRCDIR)/arch/$(CPU)-all/exec \
152                       -I$(SRCDIR)/rom/exec
154 # Android
155 AROS_ANDROID_ANTAPK := @aros_android_antapk@