#-----------------------------------------------------------------------------
# $Id: Makefile,v 1.5 1999/01/26 11:12:45 simonm Exp $

#  This is the Makefile for the runtime-system stuff.
#  This stuff is written in C (and cannot be written in Haskell).
#
#  We create two libraries.  One, libHSrts<tag>.a, is built separately
#  for each "way".  The other, libHSclib.a is built once: it is just
#  .lc files that end up the same no matter what, i.e. completely
#  ordinary C.

#  Other sorta independent, compile-once subdirs are:

#	gmp		-- GNU multi-precision library (for Integer)

#-----------------------------------------------------------------------------

TOP=..
DoingRTS=YES
include $(TOP)/mk/boilerplate.mk

WAYS=$(GhcLibWays)

SRCS_RTS_C  = $(wildcard *.c) $(wildcard hooks/*.c) $(filter-out gum/SysMan.c,$(wildcard gum/*.c))
SRCS_RTS_S  = $(wildcard *.S)
SRCS_RTS_HC = $(wildcard *.hc)

#-----------------------------------------------------------------------------
# creating and installing libHSrts.a (in its many flavors)
#
LIBRARY = libHSrts$(_way).a
LIBOBJS = $(patsubst %.c,%.$(way_)o,$(SRCS_RTS_C)) \
          $(patsubst %.hc,%.$(way_)o,$(SRCS_RTS_HC)) \
          $(patsubst %.S,%.$(way_)o,$(SRCS_RTS_S))

# gcc provides lots of useful warnings if you ask it.
# This is a pretty good list to start with - use a # to comment out
# any you don't like.
WARNING_OPTS += -optc-Wall 
WARNING_OPTS += -optc-W
WARNING_OPTS += -optc-Wstrict-prototypes 
WARNING_OPTS += -optc-Wmissing-prototypes 
WARNING_OPTS += -optc-Wmissing-declarations
WARNING_OPTS += -optc-Winline
WARNING_OPTS += -optc-Waggregate-return
WARNING_OPTS += -optc-Wpointer-arith
WARNING_OPTS += -optc-Wbad-function-cast
#WARNING_OPTS += -optc-Wcast-align
#WARNING_OPTS += -optc-Wnested-externs
#WARNING_OPTS += -optc-Wshadow
#WARNING_OPTS += -optc-Wcast-qual
#WARNING_OPTS += -optc-Wno-unused 
#WARNING_OPTS += -optc-Wredundant-decls 
#WARNING_OPTS += -optc-Wconversion

SRC_HC_OPTS += -I../includes -I. -Igum $(WARNING_OPTS) $(GhcRtsHcOpts)
SRC_CC_OPTS += $(GhcRtsCcOpts)

ifeq "$(way)" "mp"
SRC_HC_OPTS += -I$$PVM_ROOT/include
endif

C_SRCS = $(SRCS_RTS_C) $(SRCS_RTS_HC) # $(SRCS_RTS_S)???

SRC_MKDEPENDC_OPTS += -I. -I../includes

#-----------------------------------------------------------------------------
#
# Compiling the individual files
#
# Rules for building various types of objects from C files,
# override the default suffix rule here, as we want to use
# ../driver/ghc (a better C compiler :-) to compile the
# different RTS pieces
#
CC=$(HC) $(HC_OPTS) $($*_HC_OPTS)

# prevent this value from leaking into the GMP makefile
unexport CC

# -----------------------------------------------------------------------------
# Compile GMP only if we don't have it already
#
# We use GMP's own configuration stuff, because it's all rather hairy
# and not worth re-implementing in our Makefile framework.

ifneq "$(HaveLibGmp)" "YES"
boot ::
	cd gmp && ./configure

all :: gmp/libgmp.a

install :: gmp/libgmp.a

ifeq "$(way)" ""
INSTALL_LIBS += gmp/libgmp.a
endif

gmp/libgmp.a ::
	$(MAKE) -C gmp MAKEFLAGS=
endif

#-----------------------------------------------------------------------------
#
# Building the GUM SysMan
#

ifeq "$(way)" "mp"
all :: gum/SysMan

ifdef solaris2_TARGET_OS
__socket_libs = -lsocket -lnsl
else
__socket_libs =
endif

gum/SysMan : gum/SysMan.mp_o gum/LLComms.mp_o 
	$(RM) $@
	gcc -o $@ gum/SysMan.mp_o gum/LLComms.mp_o -L$$PVM_ROOT/lib/$$PVM_ARCH -lgpvm3 -lpvm3 $(__socket_libs)

CLEAN_FILES  += gum/SysMan.mp_o gum/SysMan
INSTALL_LIBEXECS += gum/SysMan
endif

#-----------------------------------------------------------------------------
#
# Files to install
#
# Just libHSrts is installed uniformly across ways
#
INSTALL_LIBS += $(LIBRARY)

include $(TOP)/mk/target.mk

