1 # Copyright © 1995-2001, The AROS Development Team. All rights reserved.
4 # Desc: host.cfg - an autoconf output file for make variables.
7 # --------------------------------------------------------------------------
9 # --------------------------------------------------------------------------
10 AROS_HOST_ARCH := @aros_host_arch@
11 AROS_HOST_CPU := @aros_host_cpu@
13 HOST_CC := @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@
23 HOST_RANLIB := @HOST_RANLIB@
24 HOST_EXE_SUFFIX := @aros_host_exe_suffix@
25 HOST_LIB_SUFFIX := @aros_host_lib_suffix@
43 PNGTOPNM := @PNGTOPNM@
44 PPMTOILBM := @PPMTOILBM@
48 GUI_LIBDIR := @aros_gui_libdir@
49 GUI_LDFLAGS := @aros_gui_ldflags@
50 GUI_LIBFLAGS := @aros_gui_libflags@
51 GUI_INCDIR := @aros_gui_incdir@
52 GUI_CFLAGS := @aros_gui_ccflags@
55 ENABLE_DBUS := @ENABLE_DBUS@
56 DBUS_CFLAGS := @DBUS_CFLAGS@
57 DBUS_LIBFLAGS := @DBUS_LIBFLAGS@
59 # --------------------------------------------------------------------------
60 # MAGIC: This is needed here for MetaMake to work. mmake will read the
61 # configured version of this file to find out a number of variables.
62 # --------------------------------------------------------------------------
63 HOSTDIR := $(TOP)/bin/$(AROS_HOST_ARCH)-$(AROS_HOST_CPU)
64 TOOLDIR := $(HOSTDIR)/tools
65 GENMF := $(TOOLDIR)/genmf.py
67 # --------------------------------------------------------------------------
68 # COMPATABILITY SECTION - WILL BE REMOVED IN THE FUTURE
69 # This is a hack. Keep it here so mmake will find these variables although
70 # the target values are not known yet here.
71 # --------------------------------------------------------------------------
72 ARCH := $(AROS_TARGET_ARCH)
73 CPU := $(AROS_TARGET_CPU)
77 COMMON_CFLAGS := $(TARGET_CFLAGS)
78 COMMON_AFLAGS := $(TARGET_AFLAGS)
79 ILDFLAGS = $(TARGET_LDFLAGS)
80 # --------------------------------------------------------------------------