summaryrefslogtreecommitdiff
path: root/ccast/axTLS/Jamfile
diff options
context:
space:
mode:
Diffstat (limited to 'ccast/axTLS/Jamfile')
-rw-r--r--ccast/axTLS/Jamfile42
1 files changed, 42 insertions, 0 deletions
diff --git a/ccast/axTLS/Jamfile b/ccast/axTLS/Jamfile
new file mode 100644
index 0000000..2e8b027
--- /dev/null
+++ b/ccast/axTLS/Jamfile
@@ -0,0 +1,42 @@
+
+PREF_CCFLAGS = $(CCOPTFLAG) ; # Turn optimisation on
+#PREF_CCFLAGS = $(CCDEBUGFLAG) ; # Debugging flags
+PREF_LINKFLAGS = $(LINKDEBUGFLAG) ;
+
+# Copy the configuration file
+if $(NT) {
+ DEFINES += WIN32 ;
+} else {
+# File conf.h : tiffconf.vc.h ;
+ if $(OS) = MACOSX {
+ } else if $(OS) = FREEBSD {
+ } else {
+ DEFINES += CONFIG_PLATFORM_LINUX ;
+ }
+}
+
+# tiff library
+LIBSRCS =
+ aes.c
+ asn1.c
+ bigint.c
+ crypto_misc.c
+ gen_cert.c
+ hmac.c
+ loader.c
+ md2.c
+ md5.c
+ openssl.c
+ os_port.c
+ p12.c
+ rc4.c
+ rsa.c
+ sha1.c
+ tls1.c
+ tls1_clnt.c
+ tls1_svr.c
+ x509.c
+ ;
+
+Library libaxtls.lib : $(LIBSRCS) ;
+