Class does not implement OM_SET method.
[tangerine.git] / config / host.cfg.in
blobc3d3bd150091d6ace929755c7b597722babcb789
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_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_AR         := @HOST_AR@
23 HOST_RANLIB     := @HOST_RANLIB@
24 HOST_EXE_SUFFIX := @aros_host_exe_suffix@
25 HOST_LIB_SUFFIX := @aros_host_lib_suffix@
27 MMAKE           := @MMAKE@
28 AWK             := @AWK@
29 RM              := @RM@
30 CP              := @CP@
31 MV              := @MV@
32 ECHO            := @ECHO@
33 MKDIR           := @MKDIR@
34 TOUCH           := @TOUCH@
35 PYTHON          := @PYTHON@
36 NOP             := @NOP@
37 FOR             := @FOR@
38 IF              := @IF@
39 TEST            := @TEST@
40 CMP             := @CMP@
41 CAT             := @CAT@
42 BISON           := @BISON@
43 PNGTOPNM        := @PNGTOPNM@
44 PPMTOILBM       := @PPMTOILBM@
45 SED             := @SED@
46 CHMOD           := @CHMOD@
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@
54 # DBUS flags
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)
74 GFXSYSTEM       := gfxhidd
75 CC              := $(TARGET_CC)
76 AS              := $(TARGET_AS)
77 COMMON_CFLAGS   := $(TARGET_CFLAGS)
78 COMMON_AFLAGS   := $(TARGET_AFLAGS)
79 ILDFLAGS        = $(TARGET_LDFLAGS)
80 # --------------------------------------------------------------------------