blob: 8478314ab14d673a7dc14519700da8e64d0ddbb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# NB: This file lives in the top-level ghc-bignum folder, and not in
# the gmp subfolder, because of #14972, where we MUST NOT create a
# folder named 'gmp' in dist/build/
ifeq "$(HaveLibGmp)" ""
HaveLibGmp = @HaveLibGmp@
endif
ifeq "$(HaveFrameworkGMP)" ""
HaveFrameworkGMP = @HaveFrameworkGMP@
endif
GMP_FORCE_INTREE = @GMP_FORCE_INTREE@
GMP_PREFER_FRAMEWORK = @GMP_PREFER_FRAMEWORK@
GMP_INCLUDE_DIRS = @GMP_INCLUDE_DIRS@
GMP_LIB_DIRS = @GMP_LIB_DIRS@
|