removed variables left over from development
[cake.git] / config / host.cfg.in
blobb571f42550a509ccbb3ea44c323d858b39aad19d
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         := @aros_host_ar@
23 HOST_RANLIB     := @aros_host_ranlib@
24 HOST_STRIP      := @aros_host_strip@
25 HOST_EXE_SUFFIX := @aros_host_exe_suffix@
26 HOST_LIB_SUFFIX := @aros_host_lib_suffix@
28 MMAKE           := @MMAKE@
29 AWK             := @AWK@
30 RM              := @RM@
31 CP              := @CP@
32 MV              := @MV@
33 ECHO            := @ECHO@
34 MKDIR           := @MKDIR@
35 TOUCH           := @TOUCH@
36 PYTHON          := @PYTHON@
37 NOP             := @NOP@
38 FOR             := @FOR@
39 IF              := @IF@
40 TEST            := @TEST@
41 CMP             := @CMP@
42 CAT             := @CAT@
43 BISON           := @BISON@
44 PNGTOPNM        := @PNGTOPNM@
45 PPMTOILBM       := @PPMTOILBM@
46 SED             := @SED@
47 CHMOD           := @CHMOD@
49 GUI_LIBDIR      := @aros_gui_libdir@
50 GUI_LDFLAGS     := @aros_gui_ldflags@
51 GUI_LIBFLAGS    := @aros_gui_libflags@
52 GUI_INCDIR      := @aros_gui_incdir@
53 GUI_CFLAGS      := @aros_gui_ccflags@
55 X11_HIDD_TARGET := @x11_hidd_target@
57 # DBUS flags
58 ENABLE_DBUS             := @ENABLE_DBUS@
59 DBUS_CFLAGS             := @DBUS_CFLAGS@
60 DBUS_LIBFLAGS           := @DBUS_LIBFLAGS@
62 # --------------------------------------------------------------------------
63 # MAGIC: This is needed here for MetaMake to work. mmake will read the
64 # configured version of this file to find out a number of variables.
65 # --------------------------------------------------------------------------
66 HOSTDIR         := $(TOP)/bin/$(AROS_HOST_ARCH)-$(AROS_HOST_CPU)
67 TOOLDIR         := $(HOSTDIR)/tools
68 GENMF           := $(TOOLDIR)/genmf.py
70 # -------------------------------------------------------------------------- 
71 # COMPATABILITY SECTION - WILL BE REMOVED IN THE FUTURE
72 # This is a hack. Keep it here so mmake will find these variables although
73 # the target values are not known yet here.
74 # --------------------------------------------------------------------------
75 ARCH            := $(AROS_TARGET_ARCH)
76 CPU             := $(AROS_TARGET_CPU)
77 GFXSYSTEM       := gfxhidd
78 CC              := $(TARGET_CC)
79 AS              := $(TARGET_AS)
80 COMMON_CFLAGS   := $(TARGET_CFLAGS)
81 COMMON_AFLAGS   := $(TARGET_AFLAGS)
82 ILDFLAGS        = $(TARGET_LDFLAGS)
83 # --------------------------------------------------------------------------