diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-03-21 21:25:42 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-03-21 21:26:11 +0000 |
commit | 024311c49e928b1ed3a8c7c6b890a2bb783ed3a3 (patch) | |
tree | 33e6331463e8c03002ecabea39f5723f3c288893 /rts/ghc.mk | |
parent | cc097a43c851891c7a1535d2082c7e392230123d (diff) | |
download | haskell-024311c49e928b1ed3a8c7c6b890a2bb783ed3a3.tar.gz |
Remove some more old, unused code
Diffstat (limited to 'rts/ghc.mk')
-rw-r--r-- | rts/ghc.mk | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/rts/ghc.mk b/rts/ghc.mk index ce17b74129..c56788554a 100644 --- a/rts/ghc.mk +++ b/rts/ghc.mk @@ -29,7 +29,7 @@ all_rts : $(ALL_RTS_LIBS) # ----------------------------------------------------------------------------- # Defining the sources -ALL_DIRS = hooks parallel sm eventlog +ALL_DIRS = hooks sm eventlog ifeq "$(HostOS_CPP)" "mingw32" ALL_DIRS += win32 @@ -37,11 +37,7 @@ else ALL_DIRS += posix endif -EXCLUDED_SRCS := -EXCLUDED_SRCS += rts/parallel/SysMan.c -EXCLUDED_SRCS += $(wildcard rts/Vis*.c) - -rts_C_SRCS := $(filter-out $(EXCLUDED_SRCS),$(wildcard rts/*.c $(foreach dir,$(ALL_DIRS),rts/$(dir)/*.c))) +rts_C_SRCS := $(wildcard rts/*.c $(foreach dir,$(ALL_DIRS),rts/$(dir)/*.c)) rts_CMM_SRCS := $(wildcard rts/*.cmm) # Don't compile .S files when bootstrapping a new arch |