diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2019-02-07 01:02:04 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-02-10 02:39:23 -0500 |
commit | 027017fb33923b106765f5a0a6fc000ebe421d40 (patch) | |
tree | 1bacb5c468da3dd624cf43496a94d420a02a851f /rules | |
parent | 53a870f4a43591f15694701f2de771773ee8b5eb (diff) | |
download | haskell-027017fb33923b106765f5a0a6fc000ebe421d40.tar.gz |
Remove ghctags (#16274)
Diffstat (limited to 'rules')
-rw-r--r-- | rules/tags-package.mk | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/rules/tags-package.mk b/rules/tags-package.mk deleted file mode 100644 index 0e67e51a10..0000000000 --- a/rules/tags-package.mk +++ /dev/null @@ -1,36 +0,0 @@ -# ----------------------------------------------------------------------------- -# -# (c) 2009 The University of Glasgow -# -# This file is part of the GHC build system. -# -# To understand how the build system works and how to modify it, see -# http://ghc.haskell.org/trac/ghc/wiki/Building/Architecture -# http://ghc.haskell.org/trac/ghc/wiki/Building/Modifying -# -# ----------------------------------------------------------------------------- - - -# Build the tags files for a package. Use like this: -# -# $(eval $(call tags-package,compiler,stage2)) -# -# Uses the same metadata as build-package. - -define tags-package -$(call trace, tags-package($1,$2)) -$(call profStart, tags-package($1,$2)) -# $1 = dir -# $2 = distdir - -.PHONY: tags_$1 -tags_$1: - inplace/bin/ghctags --topdir $$(TOP)/inplace/lib -c --use-cabal-config $1/$2 -- $$($1_$2_TAGS_HC_OPTS) $$($1_$2_v_ALL_HC_OPTS) -- $$($1_$2_HS_SRCS) - -.PHONY: TAGS_$1 -TAGS_$1: - inplace/bin/ghctags --topdir $$(TOP)/inplace/lib -e --use-cabal-config $1/$2 -- $$($1_$2_TAGS_HC_OPTS) $$($1_$2_v_ALL_HC_OPTS) -- $$($1_$2_HS_SRCS) - -$(call profEnd, tags-package($1,$2)) -endef - |