From 54bab78d57da2b177b7a5314f191d0986364f210 Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 7 Feb 2002 10:20:05 +0000 Subject: [PATCH] [project @ 2002-02-07 10:20:05 by simonmar] clean $(HC_OBJS) too --- ghc/rts/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- 1.7.10.4