buildsys  Check-in [38c3acd0ea]

Overview
Comment:Let make install depend on make all.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 38c3acd0ea528ffd14c822a41dc6bba1dff190018af0116dcc23a23b9a33201f
User & Date: js on 2012-03-27 09:53:46
Other Links: manifest | tags
Context
2012-04-08
17:51
Use the language specific flags for deps. check-in: dbf218689a user: js tags: trunk
2012-03-27
09:53
Let make install depend on make all. check-in: 38c3acd0ea user: js tags: trunk
2012-03-21
20:28
OS X: Only add -install_name after installation. check-in: 47b4ff074b user: js tags: trunk
Changes

Modified buildsys.mk.in from [c1236492e2] to [0f6756deb9].

503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
	${COMPILE_PLUGIN_STATUS}
	if ${CC} ${PLUGIN_CFLAGS} ${CFLAGS} ${CPPFLAGS} -x c -c -o $@ $<; then \
		${COMPILE_PLUGIN_OK}; \
	else \
		${COMPILE_PLUGIN_FAILED}; \
	fi

install: ${SHARED_LIB} ${STATIC_LIB} ${STATIC_PIC_LIB} ${PLUGIN} ${PROG} install-extra
	for i in ${SUBDIRS}; do \
		${DIR_ENTER}; \
		${MAKE} ${MFLAGS} install || exit $$?; \
		${DIR_LEAVE}; \
	done

	for i in ${SHARED_LIB}; do \







|







503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
	${COMPILE_PLUGIN_STATUS}
	if ${CC} ${PLUGIN_CFLAGS} ${CFLAGS} ${CPPFLAGS} -x c -c -o $@ $<; then \
		${COMPILE_PLUGIN_OK}; \
	else \
		${COMPILE_PLUGIN_FAILED}; \
	fi

install: all install-extra
	for i in ${SUBDIRS}; do \
		${DIR_ENTER}; \
		${MAKE} ${MFLAGS} install || exit $$?; \
		${DIR_LEAVE}; \
	done

	for i in ${SHARED_LIB}; do \