2015-11-24 05:44:58 +00:00
|
|
|
## -*- mode: perl; -*-
|
2015-03-12 13:58:07 +00:00
|
|
|
## Personal configuration targets
|
|
|
|
##
|
|
|
|
## If you edit this file, run this command before committing
|
2016-01-12 21:25:30 +00:00
|
|
|
## make -f Makefile.in TABLE
|
2015-03-12 13:58:07 +00:00
|
|
|
## This file is interpolated by the Configure script.
|
|
|
|
|
|
|
|
%targets = (
|
|
|
|
"debug-geoff32" => {
|
|
|
|
cc => "gcc",
|
2016-01-27 18:13:33 +00:00
|
|
|
cflags => "-DBN_DEBUG -DBN_DEBUG_RAND -DBN_STRICT -DOPENSSL_NO_DEPRECATED -DOPENSSL_NO_ASM -DOPENSSL_NO_INLINE_ASM -DL_ENDIAN -DTERMIO -DPEDANTIC -O1 -ggdb2 -Wall -Werror -Wundef -pedantic -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wsign-compare -Wmissing-prototypes -Wmissing-declarations -Wno-long-long",
|
2015-03-12 13:58:07 +00:00
|
|
|
thread_cflag => "-D_REENTRANT",
|
2016-01-29 18:28:05 +00:00
|
|
|
ex_libs => "-ldl",
|
2015-03-12 13:58:07 +00:00
|
|
|
bn_ops => "BN_LLONG",
|
|
|
|
dso_scheme => "dlfcn",
|
|
|
|
shared_target => "linux-shared",
|
|
|
|
shared_cflag => "-fPIC",
|
|
|
|
shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
|
|
|
|
},
|
|
|
|
"debug-geoff64" => {
|
|
|
|
cc => "gcc",
|
2016-01-27 18:13:33 +00:00
|
|
|
cflags => "-DBN_DEBUG -DBN_DEBUG_RAND -DBN_STRICT -DOPENSSL_NO_DEPRECATED -DOPENSSL_NO_ASM -DOPENSSL_NO_INLINE_ASM -DL_ENDIAN -DTERMIO -DPEDANTIC -O1 -ggdb2 -Wall -Werror -Wundef -pedantic -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wsign-compare -Wmissing-prototypes -Wmissing-declarations -Wno-long-long",
|
2015-03-12 13:58:07 +00:00
|
|
|
thread_cflag => "-D_REENTRANT",
|
2016-01-29 18:28:05 +00:00
|
|
|
ex_libs => "-ldl",
|
2016-01-27 23:43:25 +00:00
|
|
|
bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
|
2015-03-12 13:58:07 +00:00
|
|
|
dso_scheme => "dlfcn",
|
|
|
|
shared_target => "linux-shared",
|
|
|
|
shared_cflag => "-fPIC",
|
|
|
|
shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
|
|
|
|
},
|
|
|
|
);
|