ObjOpenSSL  Check-in [174ffb9295]

Overview
Comment:Ignore deprecation warnings as OpenSSL is deprecated as a whole on OS X.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 174ffb92951f4fb7cc7e06895bfe2850d9102ef2ad6a3b5486d73f0b0fcce503
User & Date: js on 2011-09-10 20:41:45
Other Links: manifest | tags
Context
2011-09-11
02:03
Fix forgotten change. check-in: 7abcafcb74 user: js tags: trunk
2011-09-10
20:41
Ignore deprecation warnings as OpenSSL is deprecated as a whole on OS X. check-in: 174ffb9295 user: js tags: trunk
2011-09-09
18:01
Support for getting channel binding data check-in: a1f0209e57 user: florob@babelmonkeys.de tags: trunk
Changes

Modified Makefile from [5ccc1400ae] to [864f981c5d].

13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
LIB_SUFFIX = `objfw-config --lib-suffix`
LIB_FILE = ${LIB_PREFIX}${LIB}${LIB_SUFFIX}

.SILENT:

all:
	objfw-compile --lib ${LIB_MAJOR}.${LIB_MINOR} ${CPPFLAGS} ${LIBS} \
		-o ${LIB} src/*.m

install: install-lib install-headers

install-lib: all
	mkdir -p ${destdir}${prefix}/lib
	export LIB_MAJOR=${LIB_MAJOR}; \
	export LIB_MINOR=${LIB_MINOR}; \







|







13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
LIB_SUFFIX = `objfw-config --lib-suffix`
LIB_FILE = ${LIB_PREFIX}${LIB}${LIB_SUFFIX}

.SILENT:

all:
	objfw-compile --lib ${LIB_MAJOR}.${LIB_MINOR} ${CPPFLAGS} ${LIBS} \
		-o ${LIB} -Wno-deprecated-declarations src/*.m

install: install-lib install-headers

install-lib: all
	mkdir -p ${destdir}${prefix}/lib
	export LIB_MAJOR=${LIB_MAJOR}; \
	export LIB_MINOR=${LIB_MINOR}; \