[project @ 1999-04-27 09:37:04 by simonm]
[ghc-hetmet.git] / ghc / rts / Makefile
index a1b7711..c7a7a67 100644 (file)
@@ -1,5 +1,5 @@
 #-----------------------------------------------------------------------------
-# $Id: Makefile,v 1.3 1999/01/13 17:25:41 simonm Exp $
+# $Id: Makefile,v 1.8 1999/04/27 09:37:04 simonm Exp $
 
 #  This is the Makefile for the runtime-system stuff.
 #  This stuff is written in C (and cannot be written in Haskell).
@@ -53,12 +53,13 @@ WARNING_OPTS += -optc-Wbad-function-cast
 #WARNING_OPTS += -optc-Wredundant-decls 
 #WARNING_OPTS += -optc-Wconversion
 
-SRC_HC_OPTS += -I../includes -I. -Igum $(WARNING_OPTS) $(GhcRtsHcOpts)
-SRC_CC_OPTS += -I../includes -I. -Igum $(WARNING_OPTS) $(GhcRtsCcOpts)
+SRC_HC_OPTS += -I../includes -I. -Igum $(WARNING_OPTS) $(GhcRtsHcOpts) -optc-DCOMPILING_RTS
+SRC_CC_OPTS = $(GhcRtsCcOpts)
+
+DLLWRAP = dllwrap
 
 ifeq "$(way)" "mp"
 SRC_HC_OPTS += -I$$PVM_ROOT/include
-SRC_CC_OPTS += -I$$PVM_ROOT/include
 endif
 
 C_SRCS = $(SRCS_RTS_C) $(SRCS_RTS_HC) # $(SRCS_RTS_S)???
@@ -74,12 +75,22 @@ SRC_MKDEPENDC_OPTS += -I. -I../includes
 # ../driver/ghc (a better C compiler :-) to compile the
 # different RTS pieces
 #
-CC=$(HC) $($*_HC_OPTS)
+CC=$(HC) $(HC_OPTS) $($*_HC_OPTS)
 
 # prevent this value from leaking into the GMP makefile
 unexport CC
 
 # -----------------------------------------------------------------------------
+#
+#  Building DLLs is only supported on mingw32 at the moment.
+# 
+ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
+dll ::
+       $(CP) -f libHSrts.a libHSrts_dll.a
+       ar d libHSrts_dll.a Main.o
+       $(DLLWRAP) -mno-cygwin --target=i386-mingw32 --export-all --output-lib libHSrts_imp.a --def HSrts.def -o HSrts.dll libHSrts_dll.a -lwinmm -lHS -lgmp -L. -Lgmp
+endif
+# -----------------------------------------------------------------------------
 # Compile GMP only if we don't have it already
 #
 # We use GMP's own configuration stuff, because it's all rather hairy
@@ -93,6 +104,9 @@ all :: gmp/libgmp.a
 
 install :: gmp/libgmp.a
 
+clean ::
+       $(MAKE) -C gmp MAKEFLAGS= clean
+
 ifeq "$(way)" ""
 INSTALL_LIBS += gmp/libgmp.a
 endif