From: sof Date: Thu, 24 Jan 2002 00:53:18 +0000 (+0000) Subject: [project @ 2002-01-24 00:53:18 by sof] X-Git-Tag: Approximately_9120_patches~265 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=533633e478b67f13e1cfca21a19eef41c672c3f2;p=ghc-hetmet.git [project @ 2002-01-24 00:53:18 by sof] Way 's': add -DSMP to HC_ and CC_OPTS --- diff --git a/ghc/rts/Makefile b/ghc/rts/Makefile index c01d5e2..abcb6b8 100644 --- a/ghc/rts/Makefile +++ b/ghc/rts/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.56 2002/01/15 05:39:15 sof Exp $ +# $Id: Makefile,v 1.57 2002/01/24 00:53:18 sof Exp $ # # This is the Makefile for the runtime-system stuff. # This stuff is written in C (and cannot be written in Haskell). @@ -72,6 +72,12 @@ ifeq "$(way)" "mp" SRC_HC_OPTS += -I$$PVM_ROOT/include endif + +ifeq "$(way)" "s" +SRC_HC_OPTS += -DSMP +SRC_CC_OPTS += -DSMP +endif + #----------------------------------------------------------------------------- # Include the Front panel code?