forked from holybao/PALISADE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.gmp
95 lines (73 loc) · 2.32 KB
/
Makefile.gmp
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#Makefile to build and install gmp in palisade
TAR ?= tar
#note change the following directory to the correct one on your install
PALISADE_DIR := $(CURDIR)
GMP_VER := 6.1.2
#check if the palisade directory is correct
#ifneq ($(wildcard $(PALISADE_DIR)), )
# $(info Makefile.gmp running)
#else
# $(info Makefile.gmp needs to be updated for correct PALISADE_DIR directory)
#endif
THIRD_PARTY_DIR := $(PALISADE_DIR)/third-party
DISTROS_DIR := $(THIRD_PARTY_DIR)/distros
GMP_DISTRO_DIR := $(DISTROS_DIR)/gmp-$(GMP_VER)
#check if gmp has been unpacked into the correct directory
# and installs it if not.
ifneq ($(wildcard $(THIRD_PARTY_DIR)/distros/gmp-$(GMP_VER)), )
#$(info Makefile.gmp: GMP already unpacked)
GMP_UNPACK_NEEDED :=
else
#$(info Makefile.gmp: unpacking GMP)
GMP_UNPACK_NEEDED := gmp_unpack
endif
#check if gmp has been installed into the correct directory
# and installs it if not.
ifneq ($(wildcard $(THIRD_PARTY_DIR)/lib/libgmp.a), )
#$(info Makefile.gmp: GMP already installed)
GMP_CONFIG_NEEDED :=
GMP_MAKE_NEEDED :=
GMP_CHECK_NEEDED :=
GMP_INSTALL_NEEDED :=
else
#$(info Makefile.gmp: installing GMP)
GMP_CONFIG_NEEDED := gmp_config
GMP_MAKE_NEEDED := gmp_make
#GMP_CHECK_NEEDED := gmp_check
GMP_INSTALL_NEEDED := gmp_install
endif
$(GMPLIB): gmp_all
.PHONY: gmp_all
gmp_all: $(GMP_UNPACK_NEEDED) $(GMP_CONFIG_NEEDED) $(GMP_MAKE_NEEDED) $(GMP_CHECK_NEEDED) $(GMP_INSTALL_NEEDED)
.PHONY: gmp_unpack
gmp_unpack:
@echo 'Unpacking gmp for Palisade into $(GMP_DISTRO_DIR)'
cd $(DISTROS_DIR);\
$(TAR) xf ./gmp-$(GMP_VER).tar.lz
.PHONY: gmp_config
gmp_config: $(GMP_UNPACK_NEEDED)
@echo 'Configuring gmp for Palisade in $(GMP_DISTRO_DIR)'
cd $(GMP_DISTRO_DIR); \
./configure --prefix=$(THIRD_PARTY_DIR);
.PHONY: gmp_make
gmp_make: gmp_config
@echo 'making gmp for Palisade in $(GMP_DISTRO_DIR)'
cd $(GMP_DISTRO_DIR); \
$(MAKE)
.PHONY: gmp_check
gmp_check: $(GMP_MAKE_NEEDED)
@echo 'checking gmp for Palisade in $(GMP_DISTRO_DIR)'
cd $(GMP_DISTRO_DIR); \
$(MAKE) check
.PHONY: gmp_install
gmp_install: $(GMP_CHECK_NEEDED) $(GMP_MAKE_NEEDED)
@echo 'installing gmp for Palisade in $(THIRD_PARTY_DIR)'
cd $(GMP_DISTRO_DIR); \
$(MAKE) install
.PHONY: clean_gmp
clean_gmp:
@echo 'Cleaning gmp installation'
cd $(DISTROS_DIR);\
$(RM) -rf gmp-$(GMP_VER)
cd $(THIRD_PARTY_DIR); \
$(RM) -rf include/gmp.h lib share