blob: 87c9d6552b3c806bd5d5be8ab5e1050e4f61a220 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# -----------------------------------------------------------------------------
#
# (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
#
# -----------------------------------------------------------------------------
utils/mkUserGuidePart_GENERATED_FLAGS_SETS := \
codegen \
compiler-debugging \
cpp \
finding-imports \
interactive \
interface-files \
keeping-intermediates \
language \
linking \
misc \
modes \
optimization \
optimization-levels \
packages \
phase-programs \
phases \
phase-specific \
platform-specific \
plugin \
profiling \
program-coverage \
recompilating-checking \
recompilation-checking \
redirecting-output \
temporary-files \
verbosity \
warnings
utils/mkUserGuidePart_GENERATED_RST_SOURCES := \
$(addprefix docs/users_guide/flags-,$(addsuffix .gen.rst,$(utils/mkUserGuidePart_GENERATED_FLAGS_SETS))) \
docs/users_guide/what_glasgow_exts_does.gen.rst \
docs/man/all-flags.gen.rst
utils/mkUserGuidePart_USES_CABAL = YES
utils/mkUserGuidePart_PACKAGE = mkUserGuidePart
utils/mkUserGuidePart_dist_PROGNAME = mkUserGuidePart
utils/mkUserGuidePart_dist_INSTALL_INPLACE = YES
$(eval $(call build-prog,utils/mkUserGuidePart,dist,2))
$(eval $(call clean-target,utils/mkUserGuidePart,gen,$(utils/mkUserGuidePart_GENERATED_RST_SOURCES)))
$(utils/mkUserGuidePart_GENERATED_RST_SOURCES) : $(mkUserGuidePart_INPLACE)
$(mkUserGuidePart_INPLACE)
all_utils/mkUserGuidePart: $(mkUserGuidePart_INPLACE)
|