summaryrefslogtreecommitdiff
path: root/ghc
diff options
context:
space:
mode:
authorsewardj <unknown>2000-08-22 09:48:49 +0000
committersewardj <unknown>2000-08-22 09:48:49 +0000
commit770d95e5634608f7dc6fc0ff57bac674919edc83 (patch)
treeaf3bfdbbd1e35cc0351e4ada07eff191e1b4ad7d /ghc
parent355076ac5c42dbc9b50ba150f2fdf1a0e76fa8e3 (diff)
downloadhaskell-770d95e5634608f7dc6fc0ff57bac674919edc83.tar.gz
[project @ 2000-08-22 09:48:49 by sewardj]
Make prelude/PrimOp.lhs, not prelude/PrimOp.o, depend on $(PRIMOP_BITS). 'make boot' doesn't work otherwise, since the primop includes don't get built.
Diffstat (limited to 'ghc')
-rw-r--r--ghc/compiler/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile
index cb22ba7477..836dec060d 100644
--- a/ghc/compiler/Makefile
+++ b/ghc/compiler/Makefile
@@ -1,5 +1,5 @@
# -----------------------------------------------------------------------------
-# $Id: Makefile,v 1.89 2000/08/21 13:35:46 simonmar Exp $
+# $Id: Makefile,v 1.90 2000/08/22 09:48:49 sewardj Exp $
TOP = ..
include $(TOP)/mk/boilerplate.mk
@@ -246,7 +246,7 @@ PRIMOP_BITS=primop-data-decl.hs-incl \
primop-usage.hs-incl \
primop-primop-info.hs-incl
-prelude/PrimOp.o: $(PRIMOP_BITS)
+prelude/PrimOp.lhs: $(PRIMOP_BITS)
primop-data-decl.hs-incl: prelude/primops.txt
$(GENPOC) --data-decl < $< > $@