diff options
author | Ian Lynagh <igloo@earth.li> | 2007-04-10 22:00:15 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-04-10 22:00:15 +0000 |
commit | 03ffa2bfa6c31dc6bcdcacecc2bdb3bbabd800a9 (patch) | |
tree | 6ff10cf39db4e52906fde2582c6898d8981db737 /utils/genprimopcode/Makefile | |
parent | 6c53f40f3dd84cc91a8e6850dbfb271cb24db89a (diff) | |
download | haskell-03ffa2bfa6c31dc6bcdcacecc2bdb3bbabd800a9.tar.gz |
Replace genprimopcode's parsec parser with an alex+happy parser
This use was the only thing keeping parsec in core-packages, and
we already have a dependency on alex+happy anyway.
Diffstat (limited to 'utils/genprimopcode/Makefile')
-rw-r--r-- | utils/genprimopcode/Makefile | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/utils/genprimopcode/Makefile b/utils/genprimopcode/Makefile index 681480a8be..20c409a422 100644 --- a/utils/genprimopcode/Makefile +++ b/utils/genprimopcode/Makefile @@ -3,19 +3,5 @@ include $(TOP)/mk/boilerplate.mk HS_PROG = genprimopcode -SRC_HC_OPTS += -Wall - -ifeq "$(ghc_ge_504)" "NO" -SRC_HC_OPTS += -package text -endif - -ifeq "$(ghc_ge_602)" "YES" -SRC_HC_OPTS += -package parsec -endif - -# genprimopcode is needed to boot in ghc/compiler... -ifneq "$(BootingFromHc)" "YES" -boot :: all -endif - include $(TOP)/mk/target.mk + |