Skip to content
Snippets Groups Projects
Commit b7cda987 authored by Julian Seward's avatar Julian Seward
Browse files

[project @ 2000-10-27 09:17:20 by sewardj]

Don't link happy-generated objects twice.
parent 374b9f5b
No related branches found
No related tags found
No related merge requests found
# -----------------------------------------------------------------------------
# $Id: Makefile,v 1.95 2000/10/12 12:31:11 sewardj Exp $
# $Id: Makefile,v 1.96 2000/10/27 09:17:20 sewardj Exp $
TOP = ..
include $(TOP)/mk/boilerplate.mk
......@@ -26,6 +26,7 @@ endif
# -----------------------------------------------------------------------------
# Create compiler configuration
CURRENT_DIR=ghc/compiler
CONFIG_HS = main/Config.hs
boot :: $(CONFIG_HS)
......@@ -106,9 +107,10 @@ endif
HS_SRCS = $(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs) $(wildcard $(dir)/*.hs))
ifneq "$(GhcWithHscBuiltViaC)" "YES"
HS_SRCS += rename/ParseIface.hs parser/Parser.hs
endif
# ToDo: not clear why this is here -- messes up linking
#ifneq "$(GhcWithHscBuiltViaC)" "YES"
#HS_SRCS += rename/ParseIface.hs parser/Parser.hs
#endif
HCS = $(patsubst %.lhs, %.hc, $(patsubst %.hs, %.hc, $(HS_SRCS)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment