summaryrefslogtreecommitdiff
path: root/rules/bindist.mk
blob: af3b144222b45568bb9639819d68e51d0bb31d12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -----------------------------------------------------------------------------
#
# (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
#      https://gitlab.haskell.org/ghc/ghc/wikis/building/architecture
#      https://gitlab.haskell.org/ghc/ghc/wikis/building/modifying
#
# -----------------------------------------------------------------------------


# Add files to the bindist-list. Invoke like this:
#
# $(eval $(call bindist-list,utils/genapply,ghc.mk))

define bindist-list
# $1 = name
# $2 = files

.PHONY: bindist-list_$1
bindist-list: bindist-list_$1

bindist-list_$1:
	$(foreach i,$2,\
	    $(call make-command,\
	        for f in $i; do echo $(BIN_DIST_NAME)/$$$$f >> bindist-list; done \
	    ) \
	    )
endef