2da481ed2833333b0cb7415903cb81b1b780b929
[ghc-hetmet.git] / ghc / lib / misc / Makefile
1 # $Id: Makefile,v 1.18 1999/09/17 10:43:52 sof Exp $
2 #
3 # Makefile for miscellaneous libraries.
4 #
5
6 TOP = ../..
7 include $(TOP)/mk/boilerplate.mk
8
9 WAYS=$(GhcLibWays)
10
11 ifeq "$(way)" ""
12 SUBDIRS = cbits
13 else
14 SUBDIRS=
15 endif
16
17 #-----------------------------------------------------------------------------
18 #       Setting the standard variables
19 #
20
21 LIBRARY = libHSmisc$(_way).a
22
23 ifeq "$(EnableWin32DLLs)" "YES"
24   HS_SRCS := $(filter-out Select.lhs,$(HS_SRCS))
25 endif
26
27 # Remove Readline.lhs if readline.h isn't available.
28 ifneq "$(GhcLibsWithReadline)" "YES"
29   HS_SRCS := $(filter-out Readline.lhs,$(HS_SRCS))
30 else
31   ifneq "$(ReadlineIncludePath)" ""
32      SRC_HC_OPTS += -I$(ReadlineIncludePath)
33   endif
34 endif
35
36 HS_OBJS = $(HS_SRCS:.lhs=.$(way_)o)
37 LIBOBJS = $(HS_OBJS)
38 HS_IFACES= $(HS_SRCS:.lhs=.$(way_)hi)
39 SRC_MKDEPENDHS_OPTS += -optdep--include-prelude
40
41 #-----------------------------------------------------------------------------
42 #       Setting the GHC compile options
43
44 SRC_HC_OPTS += -i../concurrent:../posix -recomp -cpp -fglasgow-exts -fvia-C -Rghc-timing $(GhcLibHcOpts)
45
46 #
47 # Profiling options
48 # (what's this stuff doing here?)
49 WAY_p_HC_OPTS += -GPrelude
50 WAY_mr_HC_OPTS += -GPrelude
51
52 #
53 # Object and interface files have suffixes tagged with their ways
54 #
55 ifneq "$(way)" ""
56 SRC_HC_OPTS += -hisuf $(way_)hi
57 endif
58
59 ifneq "$(way)" "dll"
60 SRC_HC_OPTS += -static
61 endif
62
63 #
64 # Specific flags
65 #
66
67 BSD_HC_OPTS          += -I../std/cbits -H8m -optc-DNON_POSIX_SOURCE
68 Socket_HC_OPTS       += -I../std/cbits -optc-DNON_POSIX_SOURCE
69 SocketPrim_HC_OPTS   += -I../std/cbits -H12m -optc-DNON_POSIX_SOURCE
70 PackedString_HC_OPTS += -H12m
71 Native_HC_OPTS       += -H8m
72 Pretty_HC_OPTS       += -H8m
73
74 #-----------------------------------------------------------------------------
75 #       Dependency generation
76
77 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
78
79 #-----------------------------------------------------------------------------
80 #       Win32 DLL setup
81
82 DLL_NAME = HSmisc.dll
83 DLL_IMPLIB_NAME = libHSmisc_imp.a
84 SRC_BLD_DLL_OPTS += --export-all --output-def=HSmisc.def
85 SRC_BLD_DLL_OPTS += -lwinmm -lwsock32 -lHSrts_imp -lHScbits_imp -lHSmisc_cbits_imp -lHS_imp -lHSexts_imp -lgmp -L. -L../../rts/gmp -L../../rts -L../std -L../std/cbits -L../exts -Lcbits
86
87
88 #-----------------------------------------------------------------------------
89 #       Installation; need to install .hi files as well as libraries
90 #
91 # The interface files are put inside the $(libdir), since they
92 # might (potentially) be platform specific..
93 #
94 # override is used here because for binary distributions, datadir is
95 # set on the command line. sigh.
96 #
97 override datadir:=$(libdir)/imports/misc
98
99 #
100 # Files to install from here
101
102 INSTALL_LIBS  += $(LIBRARY)
103 INSTALL_DATAS += $(HS_IFACES)
104
105 ifeq "$(EnableWin32DLLs)" "YES"
106 INSTALL_PROGS += $(DLL_NAME)
107 INSTALL_LIBS  += $(patsubst %.a, %_imp.a, $(LIBRARY))
108 INSTALL_DATAS += dLL_ifs.hi
109 endif
110
111 include $(TOP)/mk/target.mk
112