From fccd820205b77d47e1cf8e3e05d218b34076bf95 Mon Sep 17 00:00:00 2001 From: sewardj Date: Mon, 14 Feb 2000 11:59:27 +0000 Subject: [PATCH] [project @ 2000-02-14 11:59:27 by sewardj] Build parser/ctypes.o with $(HC), not $(CC). --- ghc/compiler/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile index 5cd3328..c4f6d2e 100644 --- a/ghc/compiler/Makefile +++ b/ghc/compiler/Makefile @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: Makefile,v 1.70 2000/02/04 17:29:24 sewardj Exp $ +# $Id: Makefile,v 1.71 2000/02/14 11:59:27 sewardj Exp $ TOP = .. include $(TOP)/mk/boilerplate.mk @@ -223,6 +223,10 @@ parser/hschooks.o : parser/hschooks.c @$(RM) $@ $(HC) -c -o $@ $(HC_OPTS) parser/hschooks.c +parser/ctypes.o : parser/ctypes.c + @$(RM) $@ + $(HC) -c -o $@ $(HC_OPTS) parser/ctypes.c + # Interface-file parser uses Happy SRC_HAPPY_OPTS += +RTS -K2m -H16m -RTS -- 1.7.10.4