[project @ 2000-01-13 14:33:57 by hwloidl]
[ghc-hetmet.git] / ghc / mk / paths.mk
1 # -----------------------------------------------------------------------------
2 # $Id: paths.mk,v 1.18 2000/01/13 14:34:02 hwloidl Exp $
3 #
4 # ghc project specific make variables
5 #
6
7 #-----------------------------------------------------------------------------
8 # HsTags
9
10 ifdef UseInstalledUtils
11 HSTAGS                  = hstags
12 else
13 HSTAGS                  = $(HSTAGS_DIR)/hstags
14 HSTAGS_DIR              = $(GHC_UTILS_DIR)/hstags
15 endif
16
17 #-----------------------------------------------------------------------------
18 # Extra things ``only for'' for the ghc project
19
20 GHC_DRIVER_DIR          := $(TOP)/driver
21 GHC_COMPILER_DIR        := $(TOP)/compiler
22 GHC_RUNTIME_DIR         := $(TOP)/rts
23 GHC_LIB_DIR             := $(TOP)/lib
24 GHC_INCLUDE_DIR         := $(TOP)/includes
25 GHC_UTILS_DIR           := $(TOP)/utils
26 GHC_INTERPRETER_DIR     := $(TOP)/interpreter
27
28 GHC_HSP_DIR             := $(GHC_HSC_DIR)
29 GHC_MKDEPENDHS_DIR      := $(GHC_UTILS_DIR)/mkdependHS
30 GHC_HSCPP_DIR           := $(GHC_UTILS_DIR)/hscpp
31 GHC_HSC_DIR             := $(GHC_COMPILER_DIR)
32 GHC_UNLIT_DIR           := $(GHC_UTILS_DIR)/unlit
33
34 GHC_INPLACE             = $(GHC_DRIVER_DIR)/ghc-inplace
35 GHC_HSCPP               = $(GHC_HSCPP_DIR)/hscpp
36 GHC_MKDEPENDHS          = $(GHC_MKDEPENDHS_DIR)/mkdependHS-inplace
37 GHC_HSP                 = $(GHC_HSP_DIR)/hsp
38 GHC_HSC                 = $(GHC_HSC_DIR)/hsc
39 UNLIT                   = $(GHC_UNLIT_DIR)/unlit
40 GHC_UNLIT               = $(GHC_UNLIT_DIR)/unlit
41
42 GHC_SYSMAN              = $(GHC_RUNTIME_DIR)/parallel/SysMan
43 GHC_SYSMAN_DIR          = $(GHC_RUNTIME_DIR)/parallel
44
45 #-----------------------------------------------------------------------------
46 # Stuff for the C-compiling phase in particular...
47
48 ifeq ($(HaveGcc), YES)
49 GHC_OPT_HILEV_ASM               = $(WhatGccIsCalled)
50 else
51 GHC_OPT_HILEV_ASM               = $(CC)
52 endif
53
54 #
55 # There's no need to compute dependencies when booting from .hc files
56 #
57 ifneq "$(GhcWithHscBuiltViaC)" "YES"
58 MKDEPENDHS_SRCS = $(HS_SRCS)
59 else
60 MKDEPENDHS_SRCS =
61 endif