buildsys  Check-in [7dacde6581]

Overview
Comment:Include Info.plist in .framework
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 7dacde65812b00ed6e7dc7fdee63b7f8ae53210e8120205ccdd04ad21df545eb
User & Date: js on 2017-10-15 19:32:24
Other Links: manifest | tags
Context
2017-10-15
20:22
Do not use LIB_LDFLAGS for .frameworks check-in: bdf6dfeb42 user: js tags: trunk
19:32
Include Info.plist in .framework check-in: 7dacde6581 user: js tags: trunk
19:05
Improve building .frameworks check-in: cbb6cb1ec9 user: js tags: trunk
Changes

Modified buildsys.mk.in from [7ced184af4] to [c5732ed9ef].

309
310
311
312
313
314
315
316
317


318
319
320
321
322
323
324

325
326
327
328
329
330
331
309
310
311
312
313
314
315


316
317
318
319
320
321
322
323

324
325
326
327
328
329
330
331







-
-
+
+






-
+







		${LINK_FAILED}; \
	fi; \
	for i in $$ars; do \
		dir=".$$(echo $$i | sed 's/\//_/g').objs"; \
		rm -fr $$dir; \
	done; \
	${MAKE} includedir=$$PWD/$$out/Headers INSTALL_INCLUDES_IF_SUBDIR=${includesubdir} install-includes; \
	if test -f module.map; then \
		i=module.map; \
	for i in Info.plist module.map; do \
		test -f $$i || continue; \
		${INSTALL_STATUS}; \
		if ${INSTALL} -m 644 $$i $$out/$$i; then \
			${INSTALL_OK}; \
		else \
			${INSTALL_FAILED}; \
		fi \
	fi
	done

${MORPHOS_LIB} ${MORPHOS_LIB_NOINST}: ${EXT_DEPS} ${MORPHOS_LIB_OBJS} ${MORPHOS_LIB_OBJS_EXTRA}
	${LINK_STATUS}
	out="$@"; \
	objs=""; \
	ars=""; \
	for i in ${MORPHOS_LIB_OBJS} ${MORPHOS_LIB_OBJS_EXTRA}; do \