File: Jamfile

package info (click to toggle)
argyll 3.3.0%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 33,944 kB
  • sloc: ansic: 402,917; javascript: 36,570; xml: 1,551; sh: 520; makefile: 428
file content (40 lines) | stat: -rwxr-xr-x 532 bytes parent folder | download | duplicates (2)
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

#PREF_CCFLAGS 	= $(CCOPTFLAG) ;		# Turn optimisation on
PREF_CCFLAGS	= $(CCDEBUGFLAG) ;		# Debugging flags
PREF_LINKFLAGS	= $(LINKDEBUGFLAG) ;

if $(NT) {
	DEFINES += WIN32 ;
} else {
	if $(OS) = MACOSX {
	} else if $(OS) = FREEBSD {
	} else {
		DEFINES += CONFIG_PLATFORM_LINUX ;
	}
}

# axTLS library
LIBSRCS = 
	aes.c
	asn1.c
	bigint.c
	crypto_misc.c
	hmac.c
	loader.c
	md5.c
	os_port.c
	p12.c
	rc4.c
	rsa.c
	sha1.c
	sha256.c
	sha384.c
	sha512.c
	tls1.c
	tls1_clnt.c
	tls1_svr.c
	x509.c
	;

Library libaxtls.lib : $(LIBSRCS) ;