forked from holybao/PALISADE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.common
207 lines (160 loc) · 7.61 KB
/
Makefile.common
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
#
#Copyright (c) 2015, New Jersey Institute of Technology (NJIT)
#All rights reserved.
#Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
#met:
#1. Redistributions of source code must retain the above copyright
#notice, this list of conditions and the following disclaimer.
#2. Redistributions in binary form must reproduce the above copyright
#notice, this list of conditions and the following disclaimer in the
#documentation and/or other materials provided with the distribution.
#THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
#IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
#TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
#PARTICULAR PURPOSE ARE DISCLAIMED.
#IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
#ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
#DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
#OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
#HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
#STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
#IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
#POSSIBILITY OF SUCH DAMAGE.
#
################
# Makefile contains core definitions and then includes build instructions
# for making all the palisade components
################
TEST_LIB := $(LOADTHREADFLAG) -fopenmp $(GMPLIB) -lgomp
# NOTE select the appropriate set of CPPFLAGS
# most code is checked into git with the first line active
#CPPFLAGS += -Wall -w -g ## undefine for single thread debug NO OPTIMIZATION operation
#CPPFLAGS += -Wall -Ofast -w #-g #undefine for single thread debug operation
#CPPFLAGS += -Wall -Ofast -w -fopenmp -g ##undefine for parallel debug operation
#CPPFLAGS += -Wall -O3 -w -DNDEBUG -pg ##undefine for single thread best performance operation with gprof profiling
##parallel best performance operation with debug
##warn everything
##no threading or optimization when doing coverage testing
CPPFLAGS += -g -Wall -Werror
## handle coverage test options if user set COVERAGE to any value on the command line
ifdef COVERAGE
CPPFLAGS += --coverage -Wno-unknown-pragmas
TEST_LIB += --coverage
LIBSUFFIX=.a
LIBCMD=$(AR) crv
else
ifdef MEM
CPPFLAGS += -O0
else
CPPFLAGS += -O3
endif
CPPFLAGS += -fopenmp $(COMPTHREADFLAG) ##optimize and threads
endif
## set backend if user set it on the command line
ifdef BACKEND
CPPFLAGS += -DMATHBACKEND=$(BACKEND)
endif
#CPPFLAGS += -Wall -O3 -w -fopenmp -m64 -DNDEBUG ##undefine for parallel best performance operation with no debug
#THE OPTIONS BELOW SHOULD BE USED WITH CARE AS THEY USE A LOT OF AGGRESSIVE OPTIMIZATION OPTIONS
#CPPFLAGS += -Wall Werror -DNDEBUG -m64 -Ofast -flto -march=native -funroll-loops ##undefine for single thread best performance operation
#CPPFLAGS += -Wall -Werror -DNDEBUG -m64 -Ofast -flto -march=native -funroll-loops -fopenmp ##undefine for multithread really best performance operation
#CPPFLAGS += -Wall -Werror -m64 -Ofast -flto -march=native -funroll-loops -fopenmp -DNDEBUG ##undefine for multithread really best performance operation
#CPPFLAGS += -Wall -Werror -m64 -Ofast -flto -march=native -funroll-loops -fopenmp ##undefine for multithread really best performance operation
# base directory of project
ROOTDIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
PACKAGE := palisade
VERSION := 1.5.0
#build directory
BUILDDIR := build
#bin directory
BINDIR ?= bin
#sources for palisade library
EXTLIBDIR := $(BINDIR)/lib
EXTTESTDIR := $(BINDIR)/unittest
EXTDEMODIR := $(BINDIR)/demo
# extentions for source and header files
SRCEXT := cpp
HDREXT := h
$(objects) : %.o : %.cpp
# sub makefiles: each src subdirectory needs to be here
SUBMAKEFILES := core pke abe signature
# third party directories
THIRDPARTYDIR := third-party
THIRDPARTYLIBDIR := $(THIRDPARTYDIR)/lib
THIRDPARTYINCLUDE := -I $(THIRDPARTYDIR)/include -I $(THIRDPARTYDIR)/include/rapidjson
# dynamic lib directories on system
ifeq ($(PREFIX),)
PREFIX := /usr/local
endif
LIB_DEST := $(PREFIX)/lib/$(PACKAGE)/$(VERSION)
EXTLIB := -L$(EXTLIBDIR) $(TEST_LIB) $(TCMLIB) #no profiling
INC := -I src $(patsubst %,-Isrc/%/lib,$(SUBMAKEFILES)) -I test $(OMPINCLUDE) $(THIRDPARTYINCLUDE)
ABEOBJECTSALL = $(patsubst $(ABESRCDIR)/%,$(ABEBINDIR)/%,$(patsubst %.cpp,%.o,$(ABESOURCES)))
#the name of the shared object library for palisade objects.
PALISADECORELIB := libPALISADEcore$(LIBSUFFIX)
PALISADEPKELIB := libPALISADEpke$(LIBSUFFIX)
PALISADEABELIB := libPALISADEabe$(LIBSUFFIX)
PALISADESIGNATURELIB := libPALISADEsignature$(LIBSUFFIX)
PALISADEPYLIB := pycrypto$(LIBSUFFIX)
# run make for all components. you can run any individual component separately
# by invoking "make allxxx" for example, make allcore makes everything in core only
.PHONY: all
all:
$(MAKE) gmp_all
$(MAKE) ntl_all
$(MAKE) allcore allpke allabe allsignature utall
.PHONY: docs
docs: apidocs
.PHONY: alljava
alljava: allcore allpke jwrapper
.PHONY: allpython
allpython: allcore allpke alltrapdoor allwip pywrapper
.PHONY: alldemos
alldemos: allcoredemos allpkedemos allabedemos allsignaturedemos
.PHONY: testall
testall: $(CORE_TEST_TARGET) $(PKE_TEST_TARGET) $(TRAPDOOR_TEST_TARGET) $(WIP_TEST_TARGET) $(CIRCUIT_TEST_TARGET) $(ABE_TEST_TARGET) $(SIGNATURE_TEST_TARGET) utall
LD_LIBRARY_PATH=$(LD_LIBRARY_PATH):$(ROOTDIR)/$(THIRDPARTYLIBDIR):$(ROOTDIR)/$(EXTLIBDIR) $(BINDIR)/unittest/tests$(EXESUFFIX) -t
# clean up all components. you can clean any individual compoenent separately
# by invoking "make cleantargets" for example
# each corresponding makefile will make the cleanxxxx target
.PHONY: clean
clean: cleancore cleanpke cleandocs cleanbenchmark cleanabe cleansignature
@echo 'Cleaning top level autogenerated directories'
$(RM) -rf $(BINDIR)
$(RM) -rf src/*/bin
.PHONY: clobber
clobber: clean clean_gmp clean_ntl
.PHONY: installdirs
installdirs:
install --directory $(LIB_DEST)
.PHONY: install
install: installcore installpke installtrapdoor installwip installcircuit installabe installsignature
.PHONY: dist
dist:
mkdir $(PACKAGE)-$(VERSION)
cp $(EXTLIBDIR)/$(PALISADECORELIB) $(PACKAGE)-$(VERSION)
cp $(EXTLIBDIR)/$(PALISADEPKELIB) $(PACKAGE)-$(VERSION)
cp $(EXTLIBDIR)/$(PALISADEABELIB) $(PACKAGE)-$(VERSION)
cp $(EXTLIBDIR)/$(PALISADESIGNATURELIB) $(PACKAGE)-$(VERSION)
tar -zcvf $(PACKAGE)-$(VERSION).tar.gz $(PACKAGE)-$(VERSION)
rm -rf $(PACKAGE)-$(VERSION)
.PHONY: uninstall
uninstall: uninstallcore uninstallpke uninstallabe uninstallsignature
UNITTESTMAINOBJ := $(BINDIR)/unittest/Main_TestAll.o
$(UNITTESTMAINOBJ): test/include/gtest/Main_TestAll.cpp src/core/lib/math/backend.h src/version.h
@mkdir -p $(BINDIR)/unittest
$(CC) -c $(CPPFLAGS) $(INC) -o $@ $<
.PHONY: utall
utall: $(BINDIR)/unittest/tests$(EXESUFFIX)
include Makefile.core
include Makefile.pke
include Makefile.abe
include Makefile.signature
include Makefile.gmp
include Makefile.ntl
include Makefile.benchmark #builds the benchmark framework
include Makefile.docs #populates doxgen documentation
$(BINDIR)/unittest/tests$(EXESUFFIX): $(UNITTESTMAINOBJ) $(COREUNITOBJECTS) $(EXTLIBDIR)/$(PALISADECORELIB) $(PKEUNITOBJECTS) $(EXTLIBDIR)/$(PALISADEPKELIB) $(ABEUNITOBJECTS) $(EXTLIBDIR)/$(PALISADEABELIB) $(SIGNATUREUNITOBJECTS) $(EXTLIBDIR)/$(PALISADESIGNATURELIB) $(NTLLIB) $(GMPLIB)
@mkdir -p $(BINDIR)/unittest
$(CC) -o $@ $(UNITTESTMAINOBJ) $(COREUNITOBJECTS) $(PKEUNITOBJECTS) $(ABEUNITOBJECTS) $(SIGNATUREUNITOBJECTS) $(EXTLIB) -lPALISADEsignature -lPALISADEabe -lPALISADEpke -lPALISADEcore $(TEST_LIB) $(NTLLIB) $(GMPLIB)