From: simonmar Date: Thu, 7 Feb 2002 10:20:05 +0000 (+0000) Subject: [project @ 2002-02-07 10:20:05 by simonmar] X-Git-Tag: Approximately_9120_patches~129 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=54bab78d57da2b177b7a5314f191d0986364f210 [project @ 2002-02-07 10:20:05 by simonmar] clean $(HC_OBJS) too --- diff --git a/ghc/rts/Makefile b/ghc/rts/Makefile index cc4f49a..c8f21ce 100644 --- a/ghc/rts/Makefile +++ b/ghc/rts/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.63 2002/02/04 13:59:48 simonmar Exp $ +# $Id: Makefile,v 1.64 2002/02/07 10:20:05 simonmar Exp $ # # This is the Makefile for the runtime-system stuff. # This stuff is written in C (and cannot be written in Haskell). @@ -47,6 +47,8 @@ EXCLUDED_SRCS += parallel/SysMan.c HC_SRCS = $(filter %.hc, $(SRCS)) HC_OBJS = $(patsubst %.hc,%.$(way_)o, $(HC_SRCS)) +CLEAN_FILES += $(HC_OBJS) + # Override the default $(LIBOBJS) (the default provides for building Haskell libs) LIBOBJS = $(C_OBJS) $(HC_OBJS)