blob: 19f5d5aee440ef95e384243e95d1979a67160a60 (
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
59
60
61
62
63
64
65
66
67
68
69
70
|
GMP_VERSION=6.3.0
UNISTRING_VERSION=1.4.1
GC_VERSION=8.2.8
all: build-gc/include/gc.h build-gc/lib/libgc.a build-gmp/lib/libgmp.a build-unistring/lib/libunistring.a
# Boehm-Demers-Weiser Garbage collector
gc-$(GC_VERSION).tar.gz:
curl -LOJ 'https://hboehm.info/gc/gc_source/gc-$(GC_VERSION).tar.gz'
gc-$(GC_VERSION)/configure: gc-$(GC_VERSION).tar.gz
tar xzfm $<
gc-$(GC_VERSION)/Makefile: gc-$(GC_VERSION)/configure
prefix=$$(realpath ./build-gc); \
cd gc-$(GC_VERSION); \
./configure \
--enable-static \
--disable-shared \
--prefix="$$prefix"; \
build-gc/include/gc.h build-gc/lib/libgc.a: gc-$(GC_VERSION)/Makefile
cd gc-$(GC_VERSION); \
$(MAKE) -j install
# GNU Multiple Precision Arithmetic Library
gmp-$(GMP_VERSION).tar.xz:
curl -LOJ 'https://gmplib.org/download/gmp/gmp-$(GMP_VERSION).tar.xz'
gmp-$(GMP_VERSION)/configure: gmp-$(GMP_VERSION).tar.xz
tar xJfm $<
cd gmp-$(GMP_VERSION) && patch -p0 -N < ../gmp-configure-fix.patch
gmp-$(GMP_VERSION)/Makefile: gmp-$(GMP_VERSION)/configure
prefix=$$(realpath ./build-gmp); \
cd gmp-$(GMP_VERSION); \
./configure \
--enable-static \
--disable-shared \
--prefix="$$prefix"
build-gmp/lib/libgmp.a: gmp-$(GMP_VERSION)/Makefile
$(MAKE) -C gmp-$(GMP_VERSION) -j
$(MAKE) -C gmp-$(GMP_VERSION) check
$(MAKE) -C gmp-$(GMP_VERSION) install
# Lib Unistring
libunistring-$(UNISTRING_VERSION).tar.gz:
curl -LOJ 'https://ftp.gnu.org/gnu/libunistring/libunistring-$(UNISTRING_VERSION).tar.gz'
libunistring-$(UNISTRING_VERSION)/configure: libunistring-$(UNISTRING_VERSION).tar.gz
tar xzfm $<
libunistring-$(UNISTRING_VERSION)/Makefile: libunistring-$(UNISTRING_VERSION)/configure
prefix=$$(realpath ./build-unistring); \
cd libunistring-$(UNISTRING_VERSION); \
./configure \
--enable-static \
--disable-shared \
--prefix="$$prefix"
build-unistring/lib/libunistring.a: libunistring-$(UNISTRING_VERSION)/Makefile
$(MAKE) -C libunistring-$(UNISTRING_VERSION) -j
$(MAKE) -C libunistring-$(UNISTRING_VERSION) check
$(MAKE) -C libunistring-$(UNISTRING_VERSION) install
clean:
rm -rf build-gc build-gmp build-unistring
.PHONY: all clean
|