ObjFW  Check-in [69a8da9c5d]

Overview
Comment:Add objfw-config file for ObjFWBridge
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 69a8da9c5dca9dbfc7468a4229f6512feacb9a360260a9ca695316c62c789d1d
User & Date: js on 2024-04-13 08:40:46
Other Links: manifest | tags
Context
2024-04-13
08:48
objfw-config: Ensure search directories come first check-in: 9f9867c7d2 user: js tags: trunk
08:40
Add objfw-config file for ObjFWBridge check-in: 69a8da9c5d user: js tags: trunk
08:12
Add objfw-config file for ObjFWTLS check-in: f7a3b5739b user: js tags: trunk
Changes

Modified src/bridge/Makefile from [b387f09472] to [6d656556e0].

37
38
39
40
41
42
43




















44
45
46
47
	OFNSEnumerator.m	\
	OFNSSet.m

includesubdir = ObjFWBridge

include ../../buildsys.mk





















CPPFLAGS += -I. -I.. -I../.. -I../exceptions -DOBJFWBRIDGE_LOCAL_INCLUDES
LD = ${OBJC}
FRAMEWORK_LIBS := -framework Foundation -F.. -framework ObjFW ${LIBS}
LIBS := -framework Foundation -L.. -lobjfw ${LIBS}







>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>




37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
	OFNSEnumerator.m	\
	OFNSSet.m

includesubdir = ObjFWBridge

include ../../buildsys.mk

install-extra:
	i=ObjFWBridge.oc; \
	${INSTALL_STATUS}; \
	if ${MKDIR_P} ${libdir}/objfw-config && ${INSTALL} -m 644 $$i ${libdir}/objfw-config/$$i; then \
		${INSTALL_OK}; \
	else \
		${INSTALL_FAILED}; \
	fi

uninstall-extra:
	i=ObjFWBridge.oc; \
	if test -f ${libdir}/objfw-config/$$i; then \
		if rm -f ${libdir}/objfw-config/$$i; then \
			${DELETE_OK}; \
		else \
			${DELETE_FAILED}; \
		fi \
	fi
	rmdir ${libdir}/objfw-config >/dev/null 2>&1 || true

CPPFLAGS += -I. -I.. -I../.. -I../exceptions -DOBJFWBRIDGE_LOCAL_INCLUDES
LD = ${OBJC}
FRAMEWORK_LIBS := -framework Foundation -F.. -framework ObjFW ${LIBS}
LIBS := -framework Foundation -L.. -lobjfw ${LIBS}

Added src/bridge/ObjFWBridge.oc version [284a4439f8].







>
>
>
1
2
3
package_format 1
LIBS="-lobjfwbridge $LIBS"
FRAMEWORK_LIBS="-framework ObjFWBridge $FRAMEWORK_LIBS"