Add a proper build system.
This commit is contained in:
parent
ce3b9a11cd
commit
394389b6c1
11 changed files with 4852 additions and 47 deletions
17
src/Makefile
Normal file
17
src/Makefile
Normal file
|
@ -0,0 +1,17 @@
|
|||
include ../extra.mk
|
||||
|
||||
SHARED_LIB = ${OBJOPENSSL_SHARED_LIB}
|
||||
STATIC_LIB = ${OBJOPENSSL_STATIC_LIB}
|
||||
LIB_MAJOR = 0
|
||||
LIB_MINOR = 0
|
||||
|
||||
SRCS = SSLInvalidCertificateException.m \
|
||||
SSLSocket.m \
|
||||
X509Certificate.m
|
||||
|
||||
INCLUDES = ${SRCS:.m=.h} \
|
||||
ObjOpenSSL.h
|
||||
|
||||
include ../buildsys.mk
|
||||
|
||||
LD = ${OBJC}
|
Reference in a new issue