Revert "rom: Big Pile of WIP"
[AROS.git] / config / host.cfg.in
blob04dddcf2941de222e298c0705cf1b5122e60a9f2
1 #   Copyright © 1995-2001, The AROS Development Team. All rights reserved.
2 #   $Id$
4 #   Desc: host.cfg - an autoconf output file for make variables.
7 # -------------------------------------------------------------------------- 
8 # HOST SECTION
9 # --------------------------------------------------------------------------
10 AROS_HOST_ARCH  := @aros_host_arch@
11 AROS_HOST_CPU   := @aros_host_cpu@
13 HOST_CC         := @aros_cc_pre@ @aros_host_cc@
14 HOST_LD         := @aros_host_ld@
15 HOST_MAKE       := @aros_host_make@
16 HOST_CFLAGS     := @aros_host_cflags@
17 HOST_LDFLAGS    := @aros_host_ldflags@
18 HOST_DEBUG      := @aros_host_debug@
19 HOST_MKDEP      := @aros_host_mkdep@
20 MKARGS          := @aros_host_mkargs@
22 HOST_IQUOTE     := @host_cflags_iquote@
23 HOST_IQUOTE_END := @host_cflags_iquote_end@
25 HOST_AR         := @aros_host_ar@
26 HOST_RANLIB     := @aros_host_ranlib@
27 HOST_STRIP      := @aros_host_strip@
28 HOST_EXE_SUFFIX := @aros_host_exe_suffix@
29 HOST_LIB_SUFFIX := @aros_host_lib_suffix@
31 HOST_X11_CFLAGS := $(addprefix -I,@aros_host_x11_includes@)
32 HOST_X11_LIBS   := $(addprefix -L,@aros_host_x11_libdirs@) -lX11
33 HOST_SDL_CFLAGS := @aros_host_sdl_cflags@
34 HOST_SDL_LIBS   := @aros_host_sdl_libs@
36 MMAKE           := @MMAKE@
37 AWK             := @AWK@
38 RM              := @RM@
39 CP              := @CP@
40 MV              := @MV@
41 ECHO            := @ECHO@
42 MKDIR           := @MKDIR@
43 TOUCH           := @TOUCH@
44 PYTHON          := @PYTHON@
45 NOP             := @NOP@
46 FOR             := @FOR@
47 IF              := @IF@
48 TEST            := @TEST@
49 CMP             := @CMP@
50 CAT             := @CAT@
51 BISON           := @BISON@
52 PNGTOPNM        := @PNGTOPNM@
53 PPMTOILBM       := @PPMTOILBM@
54 SED             := @SED@
55 CHMOD           := @CHMOD@
57 X11_HIDD_TARGET := @x11_hidd_target@
58 SDL_HIDD_TARGET := @sdl_hidd_target@
60 SDL_CFLAGS      := @SDL_CFLAGS@
62 # DBUS flags
63 ENABLE_DBUS             := @ENABLE_DBUS@
64 DBUS_CFLAGS             := @DBUS_CFLAGS@
65 DBUS_LIBFLAGS           := @DBUS_LIBFLAGS@
67 # Apple XCode path (for iOS target)
68 XCODE_PATH   := @aros_xcode_path@
70 # --------------------------------------------------------------------------
71 # MAGIC: This is needed here for MetaMake to work. mmake will read the
72 # configured version of this file to find out a number of variables.
73 # --------------------------------------------------------------------------
74 HOSTDIR         := $(TOP)/bin/$(AROS_HOST_ARCH)-$(AROS_HOST_CPU)
75 TOOLDIR         := $(HOSTDIR)/tools
76 GENMF           := $(TOOLDIR)/genmf.py
78 # -------------------------------------------------------------------------- 
79 # COMPATABILITY SECTION - WILL BE REMOVED IN THE FUTURE
80 # This is a hack. Keep it here so mmake will find these variables although
81 # the target values are not known yet here.
82 # --------------------------------------------------------------------------
83 ARCH            := $(AROS_TARGET_ARCH)
84 CPU             := $(AROS_TARGET_CPU)
85 GFXSYSTEM       := gfxhidd
86 CC              := $(TARGET_CC)
87 AS              := $(TARGET_AS)
88 COMMON_CFLAGS   := $(TARGET_CFLAGS)
89 COMMON_AFLAGS   := $(TARGET_AFLAGS)
90 ILDFLAGS        = $(TARGET_LDFLAGS)
91 # --------------------------------------------------------------------------